結果

問題 No.2526 Kth Not-divisible Number
ユーザー detteiuudetteiuu
提出日時 2024-10-25 23:40:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 673 ms / 2,000 ms
コード長 356 bytes
コンパイル時間 575 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 76,856 KB
最終ジャッジ日時 2024-10-25 23:40:45
合計ジャッジ時間 9,394 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,524 KB
testcase_01 AC 38 ms
52,960 KB
testcase_02 AC 38 ms
52,360 KB
testcase_03 AC 665 ms
76,548 KB
testcase_04 AC 672 ms
76,408 KB
testcase_05 AC 656 ms
75,996 KB
testcase_06 AC 673 ms
76,520 KB
testcase_07 AC 645 ms
76,588 KB
testcase_08 AC 656 ms
76,856 KB
testcase_09 AC 585 ms
76,332 KB
testcase_10 AC 660 ms
76,516 KB
testcase_11 AC 549 ms
76,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import lcm

T = int(input())

def func(n):
    return n-n//A-n//B+n//LCM

for _ in range(T):
    A, B, K = map(int, input().split())
    LCM = lcm(A, B)
    left = 0
    right = 10**18*6
    while left+1 < right:
        mid = (left+right)//2
        if func(mid) < K:
            left = mid
        else:
            right = mid
    print(right)
0