結果

問題 No.2526 Kth Not-divisible Number
ユーザー flippergoflippergo
提出日時 2024-11-16 10:10:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 733 ms / 2,000 ms
コード長 401 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 76,736 KB
最終ジャッジ日時 2024-11-16 10:11:02
合計ジャッジ時間 9,043 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 37 ms
52,608 KB
testcase_02 AC 40 ms
52,352 KB
testcase_03 AC 677 ms
76,080 KB
testcase_04 AC 715 ms
76,160 KB
testcase_05 AC 718 ms
76,664 KB
testcase_06 AC 677 ms
76,140 KB
testcase_07 AC 733 ms
76,404 KB
testcase_08 AC 642 ms
76,160 KB
testcase_09 AC 624 ms
76,032 KB
testcase_10 AC 678 ms
76,724 KB
testcase_11 AC 621 ms
76,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def gcd(a,b):
    if b==0:
        return a
    return gcd(b,a%b)
T = int(input())
for _ in range(T):
    a,b,k = map(int,input().split())
    d = gcd(a,b)
    m = a*b//d
    high = 10**19
    low = 0
    while high-low>1:
        mid = (high+low)//2
        cnt = mid//a+mid//b-mid//m
        cnt = mid-cnt
        if cnt>=k:
            high = mid
        else:
            low = mid
    print(high)
0