728x90
반응형

간단한 수학 문제이다. min(V%P, L) 부분이 핵심인 것 같다.

i = 1
while 1:
    L, P, V = map(int, input().split())
    if L == 0 and P == 0 and V == 0:
        break
    res = L*(V//P) + min(V%P, L)
    print("Case {0}: {1}".format(i, res))
    i += 1
728x90
반응형

+ Recent posts