[2836번] 설탕 배달 python

HYEOB KIM·2023년 6월 2일
0

algorithm

목록 보기
36/44
post-custom-banner

코드 풀이

[2836번] 설탕 배달

1)

import sys

n = int(sys.stdin.readline())

bag = 0
while n >= 0:
    if n % 5 == 0:
        bag += (n // 5)
        print(bag)
        break
    n -= 3
    bag += 1
else:
    print(-1)

2)

import sys

n = int(sys.stdin.readline())

end3 = n // 3
end5 = n // 5

for i in range(end3+1):
    for j in range(end5+1):
        if (i * 3) + (j * 5) == n:
            print(i+j)
            exit()

print(-1)
profile
Devops Engineer
post-custom-banner

0개의 댓글