728x90
반응형
단순 사칙연산 문제이다.
N = int(input())
cnt = 0
for i in range(1, (N-2)//2+1):
for j in range(2, N-i+1):
K = N - (2*i + j)
if K > 0 and K%2 == 0:
cnt += 1
print(cnt)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 14542번 Outer Triangle Sum(python) (0) | 2021.03.03 |
---|---|
백준 알고리즘 14545번 Square(python) (0) | 2021.03.03 |
백준 알고리즘 14491번 9진수(python) (0) | 2021.03.03 |
백준 알고리즘 14489번 치킨 두 마리 (...)(python) (0) | 2021.03.03 |
백준 알고리즘 14215번 세 막대(python) (0) | 2021.03.03 |