https://www.acmicpc.net/problem/2839
n = int(input())
res = 0
k = n
cnt = 0
while res == 0:
if k % 5 == 0:
res = k // 5 + cnt
else:
k -= 3
cnt += 1
if k == 0:
res = n // 3
if k < 0:
res = -1
print(res)
n = int(input())
res = 0
while True:
if n % 5 == 0:
res += n // 5
break
else:
n -= 3
res += 1
if n < 0:
res = -1
break
print(res)
'알고리즘 > 백준' 카테고리의 다른 글
백준 1978: 소수 찾기 (Python) (0) | 2021.08.31 |
---|---|
백준 1011: Fly me to the Alpha Centauri (Python) (0) | 2021.08.31 |
백준 2884: 부녀회장이 될테야 (Python) (0) | 2021.08.30 |
백준 10250: ACM 호텔 (Python) (0) | 2021.08.27 |
백준 2869: 달팽이는 올라가고 싶다 (Python) (0) | 2021.08.26 |