結果

問題 No.2526 Kth Not-divisible Number
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-04-02 17:27:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 709 bytes
コンパイル時間 1,088 ms
コンパイル使用メモリ 106,804 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-25 18:59:48
合計ジャッジ時間 3,282 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <map>
#include <set>
#include <iomanip>
#include <queue>
#include <algorithm>
#include <numeric>
#include <deque>
#include <complex>
#include <cassert>

using namespace std;
using ll = long long;

ll A, B, C, K;

bool solve(ll X){
    return X-(X/A+X/B-X/C) <= K;
}

int main(){

    cin >> A >> B >> K;
    C = A*B/gcd(A,B);

    ll l=0, r=9e18, c;
    while(r-l>1){
        c = (l+r)/2;
        if (solve(c)) l=c;
        else r=c;
    }

    ll mi=max(1LL, l-5);
    for (ll X=mi; X<=l; X++){
        if (X-(X/A+X/B-X/C) == K && X % A != 0 && X % B != 0){
            cout << X << endl;
            return 0;
        }
    }

    return 0;
}
0