結果

問題 No.2526 Kth Not-divisible Number
ユーザー lloyzlloyz
提出日時 2023-11-04 21:38:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 499 ms / 2,000 ms
コード長 378 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-09-25 22:19:58
合計ジャッジ時間 6,602 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 39 ms
52,480 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 491 ms
76,288 KB
testcase_04 AC 489 ms
76,296 KB
testcase_05 AC 498 ms
76,160 KB
testcase_06 AC 499 ms
76,416 KB
testcase_07 AC 493 ms
76,288 KB
testcase_08 AC 466 ms
76,304 KB
testcase_09 AC 443 ms
76,800 KB
testcase_10 AC 469 ms
76,160 KB
testcase_11 AC 411 ms
76,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
import sys
input = sys.stdin.readline

for _ in range(int(input())):
    a, b, k = map(int, input().split())
    lcm_ab = a * b // gcd(a, b)
    l, r = 0, 1 << 63
    while r - l > 1:
        mid = (l + r) // 2
        res = mid - (mid // a + mid // b - mid // lcm_ab)
        if res >= k:
            r = mid
        else:
            l = mid
    print(r)
0