結果

問題 No.2526 Kth Not-divisible Number
ユーザー nononnonon
提出日時 2024-09-10 10:11:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 290 ms / 2,000 ms
コード長 549 bytes
コンパイル時間 2,189 ms
コンパイル使用メモリ 199,900 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-10 10:11:21
合計ジャッジ時間 6,653 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 281 ms
6,944 KB
testcase_04 AC 280 ms
6,940 KB
testcase_05 AC 290 ms
6,940 KB
testcase_06 AC 281 ms
6,944 KB
testcase_07 AC 279 ms
6,940 KB
testcase_08 AC 249 ms
6,940 KB
testcase_09 AC 245 ms
6,940 KB
testcase_10 AC 254 ms
6,940 KB
testcase_11 AC 242 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
template<typename T>
T gcd(T a, T b){return b==0?a:gcd(b,a%b);}
template<typename T>
T lcm(T a, T b){return a/gcd(a,b)*b;}
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int T;
    cin>>T;
    while(T--)
    {
        long A,B,K;
        cin>>A>>B>>K;
        long C=lcm(A,B);
        long L=0,R=3e18;
        while(R-L>1)
        {
            long mid=(L+R)/2;
            long cnt=mid-(mid/A+mid/B-mid/C);
            (cnt>=K?R:L)=mid;
        }
        cout<<R<<'\n';
    }
}
0