結果
問題 | No.2526 Kth Not-divisible Number |
ユーザー | srjywrdnprkt |
提出日時 | 2023-04-02 19:06:06 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 787 bytes |
コンパイル時間 | 1,184 ms |
コンパイル使用メモリ | 108,140 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-25 19:05:29 |
合計ジャッジ時間 | 4,357 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
ソースコード
#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 judge(ll X){ return X-(X/A+X/B-X/C) <= K; } void solve(){ cin >> A >> B >> K; assert(A != B); assert(2 <= A && A <= 1e9); assert(2 <= B && B <= 1e9); assert(1 <= K && K <= 1e18); C = A*B/gcd(A,B); ll l=0, r=4e18, c; while(r-l>1){ c = (l+r)/2; if (judge(c)) l=c; else r=c; } cout << l << endl; assert(false); return; } int main(){ ll T; cin >> T; while(T){ T--; solve(); } return 0; }