結果

問題 No.2066 Simple Math !
ユーザー pockynypockyny
提出日時 2022-09-03 13:05:38
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 225 ms / 2,000 ms
コード長 626 bytes
コンパイル時間 904 ms
コンパイル使用メモリ 81,812 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-17 02:58:55
合計ジャッジ時間 7,404 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 67 ms
5,248 KB
testcase_02 AC 78 ms
5,248 KB
testcase_03 AC 46 ms
5,248 KB
testcase_04 AC 215 ms
5,248 KB
testcase_05 AC 217 ms
5,248 KB
testcase_06 AC 225 ms
5,248 KB
testcase_07 AC 213 ms
5,248 KB
testcase_08 AC 216 ms
5,248 KB
testcase_09 AC 224 ms
5,248 KB
testcase_10 AC 225 ms
5,248 KB
testcase_11 AC 214 ms
5,248 KB
testcase_12 AC 216 ms
5,248 KB
testcase_13 AC 216 ms
5,248 KB
testcase_14 AC 196 ms
5,248 KB
testcase_15 AC 200 ms
5,248 KB
testcase_16 AC 194 ms
5,248 KB
testcase_17 AC 197 ms
5,248 KB
testcase_18 AC 199 ms
5,248 KB
testcase_19 AC 140 ms
5,248 KB
testcase_20 AC 138 ms
5,248 KB
testcase_21 AC 137 ms
5,248 KB
testcase_22 AC 134 ms
5,248 KB
testcase_23 AC 138 ms
5,248 KB
testcase_24 AC 195 ms
5,248 KB
testcase_25 AC 196 ms
5,248 KB
testcase_26 AC 193 ms
5,248 KB
testcase_27 AC 190 ms
5,248 KB
testcase_28 AC 182 ms
5,248 KB
testcase_29 AC 58 ms
5,248 KB
testcase_30 AC 47 ms
5,248 KB
testcase_31 AC 55 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <atcoder/math>

using namespace std;
using namespace atcoder;
typedef long long ll;
ll gcd(ll a,ll b){
    if(a<b) swap(a,b);
    if(b==0) return a;
    return gcd(a%b,b);
}

int main(){
    int t; cin >> t;
    while(t){
        t--;
        ll p,q,k; cin >> p >> q >> k;
        ll g = gcd(p,q); p /= g; q /= g;
        ll le = 0,ri = 1000000000000000000;
        while(ri - le>1){
            ll mid = (le + ri)/2;
            ll n = min(mid/p,q - 1);
            if(floor_sum(n + 1,q,p,mid + q - n*p)>=k + 1) ri = mid;
            else le = mid;
        }
        cout << g*ri << "\n";
    }
}
0