반응형
문제 정보
제출 코드
n = int(input())
count = 0
while(True):
if(n%5==0):
count += int(n/5)
print(count)
break
else:
count += 1
n -= 3
if(n<0):
print(-1)
break
'Study > 알고리즘' 카테고리의 다른 글
[백준 알고리즘] 1011번 Python (0) | 2021.10.04 |
---|---|
[백준 알고리즘] 10757번 Python (0) | 2021.10.04 |
[백준 알고리즘] 2775번 Python (0) | 2021.10.04 |
[백준 알고리즘] 10250번 Python (0) | 2021.10.04 |
[백준 알고리즘] 2869번 Python (0) | 2021.10.04 |
댓글