목차

설탕 배달

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()