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
- misc
- Network
- 인코그니토
- SuNiNaTas
- HackCTF
- php
- Web
- wargame
- MySQL
- C
- cryptography
- 정렬
- Web Hacking
- 문자열
- 수학
- 써니나타스
- Text
- CTF
- 그리디 알고리즘
- Digital Forensics
- Incognito
- 백준
- N0Named
- 사칙연산
- Forensics
- Python
- writeup
- xcz.kr
- 구현
- Database
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 10103번 주사위 게임 본문
[Baekjoon/Python3] 10103번 주사위 게임
n = int(input())
ares, bres = 100, 100
for i in range(n):
a, b = map(int, input().split())
if a > b:
bres -= a
elif a < b:
ares -= b
print(ares, bres, sep='\n')
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 10162번 전자레인지 (0) | 2020.12.06 |
---|---|
[Baekjoon/Python3] 10156번 과자 (0) | 2020.12.06 |
[Baekjoon/Python3] 10101번 삼각형 외우기 (0) | 2020.12.06 |
[Baekjoon/Python3] 10039번 평균 점수 (0) | 2020.12.06 |
[Baekjoon/Python3/Text] 9654번 나부 함대 데이터 (0) | 2020.12.06 |
Comments