結果

問題 No.2066 Simple Math !
ユーザー t98slidert98slider
提出日時 2022-09-04 20:45:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 483 ms / 2,000 ms
コード長 1,265 bytes
コンパイル時間 1,766 ms
コンパイル使用メモリ 166,940 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-19 03:38:21
合計ジャッジ時間 13,491 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 115 ms
6,820 KB
testcase_02 AC 149 ms
6,820 KB
testcase_03 AC 25 ms
6,820 KB
testcase_04 AC 470 ms
6,820 KB
testcase_05 AC 466 ms
6,816 KB
testcase_06 AC 468 ms
6,820 KB
testcase_07 AC 464 ms
6,816 KB
testcase_08 AC 465 ms
6,816 KB
testcase_09 AC 466 ms
6,816 KB
testcase_10 AC 465 ms
6,820 KB
testcase_11 AC 469 ms
6,820 KB
testcase_12 AC 473 ms
6,816 KB
testcase_13 AC 483 ms
6,816 KB
testcase_14 AC 415 ms
6,816 KB
testcase_15 AC 422 ms
6,816 KB
testcase_16 AC 420 ms
6,816 KB
testcase_17 AC 418 ms
6,816 KB
testcase_18 AC 418 ms
6,820 KB
testcase_19 AC 259 ms
6,816 KB
testcase_20 AC 263 ms
6,816 KB
testcase_21 AC 260 ms
6,816 KB
testcase_22 AC 266 ms
6,820 KB
testcase_23 AC 264 ms
6,816 KB
testcase_24 AC 403 ms
6,820 KB
testcase_25 AC 396 ms
6,820 KB
testcase_26 AC 392 ms
6,816 KB
testcase_27 AC 389 ms
6,820 KB
testcase_28 AC 404 ms
6,816 KB
testcase_29 AC 95 ms
6,816 KB
testcase_30 AC 26 ms
6,816 KB
testcase_31 AC 23 ms
6,816 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