728x90
https://www.acmicpc.net/problem/2839
n = int(input())
result = 0
while n>=0:
if n%5 == 0:
result += int(n//5)
print(result)
break
n -= 3
result += 1
else:
print(-1)
반응형
'전.py' 카테고리의 다른 글
[python] 백준 10989 수 정렬하기 3 (0) | 2022.01.27 |
---|---|
[python] 백준 2869 달팽이는 올라가고 싶다 (0) | 2022.01.27 |
[python] 백준 2108 통계학 (0) | 2022.01.26 |
[python] 프로그래머스 신고 결과 받기 (Lv.1) (0) | 2022.01.26 |
[python] 프로그래머스 폰켓몬 (Lv.1) (0) | 2022.01.26 |