結果
問題 | No.2526 Kth Not-divisible Number |
ユーザー | norioc |
提出日時 | 2023-11-04 18:55:46 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 597 bytes |
コンパイル時間 | 264 ms |
コンパイル使用メモリ | 82,292 KB |
実行使用メモリ | 78,368 KB |
最終ジャッジ日時 | 2024-09-25 22:15:19 |
合計ジャッジ時間 | 24,914 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 34 ms
52,944 KB |
testcase_01 | AC | 37 ms
53,292 KB |
testcase_02 | AC | 36 ms
52,944 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 | - |
ソースコード
from math import lcm # n 以下の k の倍数の個数 def f(n, k): return n // k # n 以下の数のうち、C でも D でも割り切れない数の個数 def g(n, a, b): assert a != b return n - f(n, a) - f(n, b) + f(n, lcm(a, b)) INF = 1 << 64 T = int(input()) for _ in range(T): A, B, K = map(int, input().split()) lo = 1 # hi = K * 3 hi = INF res = hi while lo <= hi: m = (lo + hi) // 2 cnt = g(m, A, B) if cnt >= K: res = min(res, m) hi = m - 1 else: lo = m + 1 print(res)