#45574: 有土地公加持的 cpp 解( Very Easy)


1121232@stu.wghs.tp.edu.tw (Ian911436)

學校 : 臺北市私立薇閣高級中學
編號 : 258883
來源 : [60.248.154.139]
最後登入時間 :
2025-04-02 12:57:47
e834. P1.批發出貨(Wholesale) -- 2019年08月TOI新手同好會 | From: [60.248.154.143] | 發表日期 : 2025-03-19 15:28

#include <bits/stdc++.h>
using namespace std;
 
int main() {
int a, b;
cin >> a;
while(cin >> b){
    if(b==0){ //判斷結束時間
        break;
    }
    if(b % a == 0){
        cout << b/a << endl;
    }
    else{ //用floor向下取整
        cout << (a*(floor(b/a)+1))-b << endl;
    }
}
    return 0;
}

 

 
ZeroJudge Forum