結果
問題 | No.2526 Kth Not-divisible Number |
ユーザー | wgrape |
提出日時 | 2023-12-13 09:46:39 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 489 bytes |
コンパイル時間 | 751 ms |
コンパイル使用メモリ | 82,072 KB |
実行使用メモリ | 78,344 KB |
最終ジャッジ日時 | 2024-09-27 05:16:18 |
合計ジャッジ時間 | 25,713 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
53,604 KB |
testcase_01 | AC | 38 ms
53,140 KB |
testcase_02 | AC | 34 ms
52,008 KB |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
ソースコード
T = int(input()) import math def is_ok(x,a,b,k): # xに対して、aでもbでも割り切れない数がk個以上存在すればTrue g = math.gcd(a, b) L = a // g * b cnt = x - (x // a) - (x // b) + (x // L) return cnt >= k for _ in range(T): A,B,K = map(int,input().split()) ok = 10 ** 20 ng = 0 while abs(ok - ng) > 1: mid = abs(ok + ng) // 2 if is_ok(mid, A, B, K): ok = mid else: ng = mid print(ok)