728x90
반응형
단순 구현 문제이다.
n = int(input())
cnt = 0
if n <= 198:
for i in range(1, 100):
for j in range(1, 100):
if i+j == n:
cnt += 1
print(cnt)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 4101번 크냐?(python) (0) | 2021.02.13 |
---|---|
백준 알고리즘 4084번 Viva la Diferencia(python) (0) | 2021.02.13 |
백준 알고리즘 3486번 Adding Reversed Numbers(python) (0) | 2021.02.12 |
백준 알고리즘 3460번 이진수(python) (0) | 2021.02.12 |
백준 알고리즘 3058번 짝수를 찾아라(python) (0) | 2021.02.12 |