[문제]
https://www.acmicpc.net/problem/1267
[풀이]
[코드]
if __name__ == '__main__':
n = int(input())
time_li = [int(x) for x in input().split()]
ys = 0
ms = 0
for i in time_li:
ys += (i//30 + 1) * 10
ms += (i//60 + 1) * 15
if ys < ms:
print("Y", ys)
elif ys == ms:
print("Y M", ms)
else:
print("M", ms)
'문제풀이 > BOJ' 카테고리의 다른 글
[Python] BOJ/백준 1350번 진짜 공간 (0) | 2021.06.09 |
---|---|
[Python] BOJ/백준 1009번 분산처리 (0) | 2021.06.09 |
[Python] BOJ/백준 11653번 소인수분해 (0) | 2021.06.04 |
[Python] BOJ/백준 7568번 덩치 (0) | 2021.06.04 |
[Python] BOJ/백준 17496번 스타후르츠 (0) | 2021.06.02 |