import sys
input = sys.stdin.readline
n = int(input())
Q1, R1 = divmod(n, 5)
while True:
if R1 % 2 == 0:
Q2, R2 = divmod(R1, 2)
print (Q1 + Q2)
break
else:
Q1 = Q1 - 1
R1 = R1 + 5
if Q1 < 0:
print (-1)
break
'Computer Science > 백준 알고리즘' 카테고리의 다른 글
[백준] 15596번 정수 N개의 합 (C/C++) (0) | 2022.06.29 |
---|---|
[백준] 15552번 빠른 A+B (C/C++) (0) | 2022.06.29 |
[백준] 14889번 스타트와 링크 (파이썬) (0) | 2022.06.29 |
[백준] 14888번 연산자 끼워넣기 (파이썬) (0) | 2022.06.29 |
[백준] 14681번 사분면 고르기 (C/C++) (0) | 2022.06.29 |