V일짜리 휴가에서 연속한 P일 중 L일만 쉴 수 있을 때, 최대 며칠 쉴 수 있는지를 구하는 문제.
#include <iostream>
using namespace std;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
// L: occupancy limit
// P: consecutive days
// V: vacation days
int L, P, V, ans, cnt;
cnt = 1;
while (true) {
cin >> L >> P >> V;
if (L == 0 && P == 0 && V == 0) break;
ans = 0;
ans += (V / P) * L; // P일 중 L일을 모두 쉴 수 있는 경우
ans += (((V % P) < L) ? (V % P) : L); // P일 중 L일을 모두 쉴 수 없는 경우
cout << "Case " << cnt << ": " << ans << endl;
cnt++;
}
return 0;
}