짱해커가 되어보자

boj 10162 본문

프로그래밍_일반/백준

boj 10162

Spadework 2020. 1. 29. 07:27

* Solved 기준 브론즈4 단순 풀이

t = int(input())
if(t%10 != 0): print(-1)
else: print(t//300, (t%300)//60, (t%300%60)//10)

'프로그래밍_일반 > 백준' 카테고리의 다른 글

boj 1964  (0) 2020.01.29
boj 10101  (0) 2020.01.29
boj 2420  (0) 2020.01.29
boj 2480  (0) 2020.01.29
boj 2530  (0) 2020.01.29
Comments