[백준] #1075 나누기 python
2023. 1. 16. 06:00
https://www.acmicpc.net/problem/1075
📕 설명 📕
뒷 두 자리만 고려하는 풀이를 생각하여 다음과 같이 풀이하였다.
🧑🏻💻 나의 풀이 🧑🏻💻
N = int(input())
M = int(input())
tmp = int(str(N)[:-2]+'00')
while True:
if tmp % M == 0:
break
tmp += 1
print(str(tmp)[-2:])
'Programming > Algorithm' 카테고리의 다른 글
[백준] #2441 별 찍기 - 4 python (0) | 2023.01.18 |
---|---|
[백준] #2747 피보나치 수 python (0) | 2023.01.17 |
[백준] #10886 0 = not cute / 1 = cute python (0) | 2023.01.15 |
[백준] #10953 A + B - 6 python (0) | 2023.01.14 |
[백준] #2559 수열 python (0) | 2023.01.13 |