#28311: CPP


11030067@mail.hpsh.tp.edu.tw (和平110級鄧雨珊)

學校 : 臺北市立和平高級中學
編號 : 163096
來源 : [61.64.210.174]
最後登入時間 :
2022-10-23 16:54:59
c079. 10346 - Peter's Smokes -- UVa10346 | From: [219.85.135.207] | 發表日期 : 2021-11-28 00:05

#include <iostream>
using namespace std;

int f(int n, int m, int k){
if (n+m<k){
return n;
}
else {
return (n+m)/k+n;
}
}
int main(){
int n, k;
while (cin >> n >> k){
cout << f(n, n/k, k) <<endl;
}
}
 
ZeroJudge Forum