結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 60 ms
5,248 KB
testcase_02 AC 74 ms
5,248 KB
testcase_03 WA -
testcase_04 AC 205 ms
5,248 KB
testcase_05 AC 201 ms
5,248 KB
testcase_06 AC 200 ms
5,248 KB
testcase_07 AC 200 ms
5,248 KB
testcase_08 AC 200 ms
5,248 KB
testcase_09 AC 201 ms
5,248 KB
testcase_10 AC 213 ms
5,248 KB
testcase_11 AC 208 ms
5,248 KB
testcase_12 AC 202 ms
5,248 KB
testcase_13 AC 209 ms
5,248 KB
testcase_14 AC 186 ms
5,248 KB
testcase_15 AC 183 ms
5,248 KB
testcase_16 AC 182 ms
5,248 KB
testcase_17 AC 180 ms
5,248 KB
testcase_18 AC 181 ms
5,248 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 175 ms
5,248 KB
testcase_25 AC 178 ms
5,248 KB
testcase_26 AC 179 ms
5,248 KB
testcase_27 AC 184 ms
5,248 KB
testcase_28 AC 186 ms
5,248 KB
testcase_29 AC 58 ms
5,248 KB
testcase_30 WA -
testcase_31 AC 57 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using namespace std;
using namespace atcoder;
typedef long long ll;
int main(){
    int t; cin >> t;
    while(t){
        t--;
        ll p,q,k; cin >> p >> q >> k;
        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 << ri << "\n";
    }
}
0