結果

問題 No.2526 Kth Not-divisible Number
ユーザー ntudantuda
提出日時 2023-11-04 11:50:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 303 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 76,624 KB
最終ジャッジ日時 2024-09-25 21:58:06
合計ジャッジ時間 6,988 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,564 KB
testcase_01 WA -
testcase_02 AC 32 ms
52,364 KB
testcase_03 AC 581 ms
76,580 KB
testcase_04 AC 571 ms
76,392 KB
testcase_05 AC 604 ms
76,188 KB
testcase_06 AC 591 ms
76,376 KB
testcase_07 AC 594 ms
76,252 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import lcm
for _ in range(int(input())):
    A,B,K = map(int,input().split())
    C = lcm(A,B)

    lb = K
    ub = K * 10

    while ub - lb > 1:
        mid = (ub + lb) // 2
        if mid - mid//A - mid//B + mid//C <= K:
            lb = mid
        else:
            ub = mid
    print(lb)
0