結果

問題 No.2526 Kth Not-divisible Number
ユーザー vwxyzvwxyz
提出日時 2024-08-09 06:10:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 714 ms / 2,000 ms
コード長 468 bytes
コンパイル時間 653 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,824 KB
最終ジャッジ日時 2024-08-09 06:10:55
合計ジャッジ時間 7,934 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,608 KB
testcase_01 AC 35 ms
51,968 KB
testcase_02 AC 34 ms
52,480 KB
testcase_03 AC 648 ms
77,196 KB
testcase_04 AC 644 ms
77,456 KB
testcase_05 AC 690 ms
76,968 KB
testcase_06 AC 714 ms
77,036 KB
testcase_07 AC 645 ms
77,232 KB
testcase_08 AC 686 ms
76,820 KB
testcase_09 AC 606 ms
77,304 KB
testcase_10 AC 714 ms
77,052 KB
testcase_11 AC 391 ms
77,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

def LCM(n,m):
    if n or m:
        return abs(n)*abs(m)//math.gcd(n,m)
    return 0

def Bisect_Int(ok,ng,is_ok):
    while abs(ok-ng)>1:
        mid=(ok+ng)//2
        if is_ok(mid):
            ok=mid
        else:
            ng=mid
    return ok

T=int(input())
for t in range(T):
    A,B,K=map(int,input().split())
    lcm=LCM(A,B)
    def is_ok(x):
        return x-1-(x-1)//A-(x-1)//B+(x-1)//lcm<K
    ans=Bisect_Int(1,K*3+3,is_ok)
    print(ans)
0