컴공생의 다이어리
[파이썬, Python] 백준 2839번 : 설탕 배달 본문
백준 2839번 : 설탕 배달
내 코드
n = int(input())
count = 0
while True:
if (n % 5) == 0:
count = count + (n//5)
print(count)
break
n = n-3
count += 1
if n < 0:
print("-1")
break
728x90
'Development > Algorithm & Coding Test' 카테고리의 다른 글
[파이썬, Python] 백준 2775번 : 부녀회장이 될테야 (0) | 2021.06.13 |
---|---|
[파이썬, Python] 백준 10250번 : ACM 호텔 (0) | 2021.06.12 |
[파이썬, Python] 백준 2869번 : 달팽이는 올라가고 싶다 (0) | 2021.06.09 |
[파이썬, Python] 백준 1193번 : 분수찾기 (0) | 2021.06.05 |
[파이썬, Python] 백준 2292번 : 벌집 (0) | 2021.06.05 |
Comments