ps | |
---|---|
링크 | acmicpc.net/… |
출처 | BOJ |
문제 번호 | 2839 |
문제명 | 설탕 배달 |
레벨 | 브론즈 1 |
분류 |
애드혹 |
시간복잡도 | O(1) |
사용한 언어 | Python |
제출기록 | 29200KB / 68ms |
최고기록 | 52ms |
해결날짜 | 2021/10/01 |
"""Solution code for "BOJ 2839. 설탕 배달".
- Problem link: https://www.acmicpc.net/problem/2839
- Solution link: http://www.teferi.net/ps/problems/boj/2839
"""
def main():
N = int(input())
count_5, r = divmod(N, 5)
while r % 3 != 0:
r += 5
count_5 -= 1
print(count_5 + r // 3 if count_5 >= 0 else '-1')
if __name__ == '__main__':
main()