結果
問題 | No.2526 Kth Not-divisible Number |
ユーザー | GOTKAKO |
提出日時 | 2023-11-03 21:39:36 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 657 bytes |
コンパイル時間 | 2,173 ms |
コンパイル使用メモリ | 201,528 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-25 19:40:54 |
合計ジャッジ時間 | 6,100 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 330 ms
5,376 KB |
testcase_04 | AC | 329 ms
5,376 KB |
testcase_05 | AC | 331 ms
5,376 KB |
testcase_06 | AC | 332 ms
5,376 KB |
testcase_07 | AC | 329 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ ios_base::sync_with_stdio(false); cin.tie(nullptr); int test; cin >> test; while(test--){ long long A,B,K; cin >> A >> B >> K; if(A > B) swap(A,B); long long G = gcd(A,B),L = A*B/G; long long loop = L-(L/A+L/B-1); long long answer = L*(K/loop); K %= loop; long long low = -1,high = L-1; while(high-low > 1){ long long mid = (high+low)/2; long long now = mid-(mid/A+mid/B); if(now >= K) high = mid; else low = mid; } cout << answer+high << endl; } }