Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- wargame
- Incognito
- 구현
- Web Hacking
- misc
- php
- CTF
- C
- Database
- N0Named
- Digital Forensics
- 인코그니토
- 써니나타스
- xcz.kr
- 정렬
- cryptography
- MySQL
- Text
- Forensics
- 수학
- Python
- HackCTF
- 사칙연산
- 문자열
- 그리디 알고리즘
- SuNiNaTas
- writeup
- Web
- 백준
- Network
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 1267번 핸드폰 요금 본문
[Baekjoon/Python3] 1267번 핸드폰 요금
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)
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 1292번 쉽게 푸는 문제 (0) | 2020.12.02 |
---|---|
[Baekjoon/Python3] 1284번 집 주소 (0) | 2020.12.02 |
[Baekjoon/Python3] 1237번 정ㅋ벅ㅋ (0) | 2020.12.02 |
[Baekjoon/Python3] 1188번 음식 평론가 (0) | 2020.12.02 |
[Baekjoon/Python3] 1157번 단어 공부 (0) | 2020.12.02 |
Comments