컴공생의 다이어리
[파이썬, 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] 백준 1011번 : Fly me to the Alpha Centauri (0) | 2021.06.27 |
---|---|
[파이썬, Python] 백준 10757번 : 큰 수 A+B (0) | 2021.06.15 |
[파이썬, Python] 백준 2775번 : 부녀회장이 될테야 (0) | 2021.06.13 |
[파이썬, Python] 백준 10250번 : ACM 호텔 (0) | 2021.06.12 |
[파이썬, Python] 백준 2839번 : 설탕 배달 (0) | 2021.06.10 |
Comments