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
- Incognito
- misc
- Python
- Network
- 정렬
- CTF
- Database
- Web
- 백준
- Text
- MySQL
- 써니나타스
- 그리디 알고리즘
- 수학
- Web Hacking
- xcz.kr
- SuNiNaTas
- 구현
- C
- 문자열
- cryptography
- Digital Forensics
- 인코그니토
- Forensics
- php
- wargame
- N0Named
- 사칙연산
- HackCTF
- writeup
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 14489번 치킨 두 마리 (...) 본문
Programming/Python & Data Structures
[Baekjoon/Python3] 14489번 치킨 두 마리 (...)
HooNeee 2020. 12. 7. 02:56[Baekjoon/Python3] 14489번 치킨 두 마리 (...)
a, b = map(int, input().split())
c = 2 * int(input())
if (a + b) >= c:
print(a + b - c)
else:
print(a + b)
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 14581번 팬들에게 둘러싸인 홍준 (0) | 2020.12.07 |
---|---|
[Baekjoon/Python3] 14490번 백대열 (0) | 2020.12.07 |
[Baekjoon/Python3] 14487번 욱제는 효도쟁이야!! (0) | 2020.12.07 |
[Baekjoon/Python3] 14425번 문자열 집합 (0) | 2020.12.07 |
[Baekjoon/Python3] 14219번 막대과자 포장 (0) | 2020.12.07 |
Comments