結果

問題 No.2066 Simple Math !
ユーザー t98slidert98slider
提出日時 2022-09-04 20:45:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 518 ms / 2,000 ms
コード長 1,265 bytes
コンパイル時間 1,593 ms
コンパイル使用メモリ 166,928 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-29 20:28:43
合計ジャッジ時間 14,493 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 126 ms
5,376 KB
testcase_02 AC 164 ms
5,376 KB
testcase_03 AC 28 ms
5,376 KB
testcase_04 AC 513 ms
5,376 KB
testcase_05 AC 516 ms
5,376 KB
testcase_06 AC 514 ms
5,376 KB
testcase_07 AC 518 ms
5,376 KB
testcase_08 AC 515 ms
5,376 KB
testcase_09 AC 516 ms
5,376 KB
testcase_10 AC 514 ms
5,376 KB
testcase_11 AC 510 ms
5,376 KB
testcase_12 AC 514 ms
5,376 KB
testcase_13 AC 517 ms
5,376 KB
testcase_14 AC 460 ms
5,376 KB
testcase_15 AC 456 ms
5,376 KB
testcase_16 AC 459 ms
5,376 KB
testcase_17 AC 459 ms
5,376 KB
testcase_18 AC 460 ms
5,376 KB
testcase_19 AC 285 ms
5,376 KB
testcase_20 AC 285 ms
5,376 KB
testcase_21 AC 286 ms
5,376 KB
testcase_22 AC 287 ms
5,376 KB
testcase_23 AC 289 ms
5,376 KB
testcase_24 AC 435 ms
5,376 KB
testcase_25 AC 432 ms
5,376 KB
testcase_26 AC 434 ms
5,376 KB
testcase_27 AC 430 ms
5,376 KB
testcase_28 AC 434 ms
5,376 KB
testcase_29 AC 106 ms
5,376 KB
testcase_30 AC 29 ms
5,376 KB
testcase_31 AC 27 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;

long long floor_sum(long long n, long long m, long long a, long long b) {
    long long ans = 0;
    if (a >= m) {
        ans += (n - 1) * n * (a / m) / 2;
        ans = min(ans, 1ll << 60);
        a %= m;
    }
    if (b >= m) {
        ans += n * (b / m);
        ans = min(ans, 1ll << 60);
        b %= m;
    }
    long long y_max = (a * n + b) / m, x_max = (y_max * m - b);
    if (y_max == 0) return ans;
    ans += (n - (x_max + a - 1) / a) * y_max;
    ans = min(ans, 1ll << 60);
    ans += floor_sum(y_max, a, m, (a - x_max % a) % a);
    ans = min(ans, 1ll << 60);
    return ans;
}

int main(){
    int t;
    cin >> t;
    while(t--){
        ll p, q, k, g;
        cin >> p >> q >> k;
        g = __gcd(p, q);
        p /= g, q /= g;
        if(p == 1 || q == 1){
            cout << g * k << '\n';
            continue;
        }
        auto f = [&](ll v){
            ll r = min(q, v / p + 1);
            return floor_sum(r, q, p, v + q - p * (r - 1));
        };
        ll ng = 0, ok = 1ll << 60, mid;
        while(ng + 1 < ok){
            mid = (ng + ok) / 2;
            if(f(mid) <= k)ng = mid;
            else ok = mid;
        }
        cout << g * ok << '\n';
    }
}
0