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
- 인코그니토
- Digital Forensics
- 그리디 알고리즘
- CTF
- php
- Web
- SuNiNaTas
- Database
- cryptography
- 정렬
- N0Named
- MySQL
- Network
- C
- writeup
- 문자열
- 써니나타스
- Web Hacking
- 사칙연산
- HackCTF
- misc
- Python
- 구현
- Forensics
- xcz.kr
- wargame
- 백준
- Text
- Incognito
- 수학
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 1075번 나누기 본문
[Baekjoon/Python3] 1075번 나누기
n = int(input()) f = int(input()) n -= n % 100 while True: if n % f == 0: break else: n += 1 print(str(n)[-2:])
n = int(input()) f = int(input()) n -= n % 100 if n % f == 0: print('%02d' %(n % 100)) else: print('%02d' %((n + (f - n % f)) % 100))
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 1085번 직사각형에서 탈출 (0) | 2020.12.02 |
---|---|
[Baekjoon/Python3] 1076번 저항 (0) | 2020.12.02 |
[Baekjoon/Python3] 1065번 한수 (1) | 2020.12.02 |
[Baekjoon/Python3] 1037번 약수 (0) | 2020.12.02 |
[Baekjoon/Python3] 1032번 명령 프롬프트 (0) | 2020.12.02 |
Comments