【題解】ZeroJudge a536: 11689 – Soda Surpler

【題目敘述】https://zerojudge.tw/ShowProblem?problemid=a536 (考生答對率: 62.14%)

#include <iostream>
using namespace std;

int main() {
    int N, e, f, c;
    cin >> N;
    while (N--){
        cin >> e >> f >> c;
        int ans = (e + f) / c;
        e = (e + f) % c + (e + f) / c;
        while (e >= c) {
            ans += e / c;
            e = e / c + e % c;
        }
        cout << ans << "\n";
    }
    return 0;
}
分享本文 Share with friends