전자레인지 - 백준 10162번
def microwave(second):
button = [5 * 60, 1 * 60, 10] # 전자레인지 시간조절 버튼(단위 - 초)
result = []
time = second
if time % 10 != 0 :
return -1
result.append(str(time // button[0])) # A버튼 갯수
time %= button[0]
result.append(str(time // button[1])) # B버튼 갯수
time %= button[1]
result.append(str(time // button[2])) # C버튼 갯수
return ' '.join(result) # 출력 형태 : 0 0 0
'''테스트'''
# seconds = [100, 189]
# for second in seconds:
# print(microwave(second))
second = int(input())
print(microwave(second))
'Data Structure&Algorithm > Greedy' 카테고리의 다른 글
캥거루 세마리2 - [백준 11034번] (0) | 2021.07.14 |
---|---|
세탁소 사장 동혁 - [백준 2720번] (0) | 2021.07.14 |
신입사원 - [백준 1946번] (0) | 2021.07.14 |
도서관 - [백준 1461번] (0) | 2021.07.14 |
강의실 - [백준 1374번] (0) | 2021.07.14 |