結果

問題 No.2526 Kth Not-divisible Number
ユーザー Madhav GuptaMadhav Gupta
提出日時 2024-07-13 19:32:33
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 611 ms / 2,000 ms
コード長 603 bytes
コンパイル時間 3,702 ms
コンパイル使用メモリ 275,156 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-13 19:32:44
合計ジャッジ時間 10,496 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 576 ms
6,944 KB
testcase_04 AC 611 ms
6,940 KB
testcase_05 AC 561 ms
6,944 KB
testcase_06 AC 586 ms
6,940 KB
testcase_07 AC 600 ms
6,940 KB
testcase_08 AC 391 ms
6,940 KB
testcase_09 AC 289 ms
6,944 KB
testcase_10 AC 423 ms
6,944 KB
testcase_11 AC 328 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define endl "\n" 
#define int long long

const int MOD = 998244353;

void solve() {
    int a, b, k; cin >> a >> b >> k;
    int l = 1, r = LONG_LONG_MAX;
    while (l < r) {
        int mid = l + (r - l) / 2;
        int count = mid - mid / a - mid / b + mid / (lcm(a, b));
        if(count < k) {
            l = mid + 1;
        } else {
            r = mid;
        }
    }
    cout << l << endl;
}

int32_t main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    int T = 1;
    cin >> T;
    while (T--) {
        solve();
    }
    return 0;
}
0