結果

問題 No.2526 Kth Not-divisible Number
ユーザー ManjushriMitraManjushriMitra
提出日時 2024-12-12 18:24:52
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,033 bytes
コンパイル時間 3,082 ms
コンパイル使用メモリ 243,584 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-12-12 18:25:12
合計ジャッジ時間 17,389 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 WA -
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 1,873 ms
6,824 KB
testcase_04 AC 1,891 ms
6,820 KB
testcase_05 AC 1,884 ms
6,816 KB
testcase_06 AC 1,888 ms
6,816 KB
testcase_07 AC 1,867 ms
6,820 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i,m,n) for(int i=m; i<int(n); ++i)
#define repll(i,m,n) for(ll i=m; i<ll(n); ++i)
#define all(a) (a).begin(), (a).end()
#define rall(a) (a).rbegin(), (a).rend()
#define fi first
#define se second

template<typename T> bool chmin(T& a, T b){ if(a > b){a = b; return true;} return false; }
template<typename T> bool chmax(T& a, T b){ if(a < b){a = b; return true;} return false; }

template<typename T> T gcd(T a, T b){ return a % b ? gcd(b, a % b) : 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--){
        ll A, B, K;
        cin >> A >> B >> K;

        ll lo = 1LL, hi = 1LL << 62, mid, x;
        while(abs(lo - hi) > 1LL){
            mid = (lo + hi) / 2LL;

            x = mid - (mid / A + mid / B - mid / lcm(A, B));
            (x > K ? hi : lo) = mid;
        }
        cout << lo << endl;
    }

    return 0;
}
0