結果

問題 No.2526 Kth Not-divisible Number
ユーザー ochiaigawaochiaigawa
提出日時 2023-11-03 21:26:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 699 bytes
コンパイル時間 2,372 ms
コンパイル使用メモリ 203,608 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-25 19:07:00
合計ジャッジ時間 4,381 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 WA -
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 194 ms
6,944 KB
testcase_04 AC 191 ms
6,944 KB
testcase_05 AC 190 ms
6,944 KB
testcase_06 AC 192 ms
6,944 KB
testcase_07 AC 192 ms
6,944 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
using namespace std;
int main() {
  cin.tie(0); cout.tie(0);
  ios::sync_with_stdio(false);
  cout << fixed << setprecision(12);
  int T;
  cin >> T;
  while(T--) {
    long long A, B, K;
    cin >> A >> B >> K;
    long long D = lcm(A, B);
    long long C = D - D / A - D / B + 1;
    long long ans = K / C * D;
    K %= C;
    long long ok = -1, ng = D + 1;
    while(abs(ok - ng) > 1) {
      long long mid = (ok + ng) >> 1;
      long long cnt = mid - mid / A - mid / B;
      if(cnt > K) {
        ng = mid;
      } else {
        ok = mid;
      }
    }
    cout << ans + ok << '\n';
  }
  return 0;
}
0