보안을 그리다, 훈이

[Baekjoon/Python3] 1267번 핸드폰 요금 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 1267번 핸드폰 요금

HooNeee 2020. 12. 2. 23:05

[Baekjoon/Python3] 1267번 핸드폰 요금

 

www.acmicpc.net/problem/1267

 

1267번: 핸드폰 요금

동호가 저번 달에 이용한 통화의 개수 N이 주어진다. N은 20보다 작거나 같은 자연수이다. 둘째 줄에 통화 시간 N개가 주어진다. 통화 시간은 10,000보다 작거나 같은 자연수이다.

www.acmicpc.net

 

n = int(input())
time = list(map(int, input().split()))
y, m = 0, 0
for t in time:
    y += (t // 30 + 1) * 10
    m += (t // 60 + 1) * 15
if y > m:
    print('M', m)
elif y < m:
    print('Y', y)
else:
    print('Y M', m)
Comments