結果

問題 No.2526 Kth Not-divisible Number
ユーザー vwxyzvwxyz
提出日時 2024-08-09 06:09:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 455 bytes
コンパイル時間 353 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 17,696 KB
最終ジャッジ日時 2024-08-09 06:09:12
合計ジャッジ時間 5,492 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
17,696 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 25 ms
10,880 KB
testcase_03 TLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
権限があれば一括ダウンロードができます

ソースコード

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())
    def is_ok(x):
        return x-1-(x-1)//A-(x-1)//B+(x-1)//LCM(A,B)<K
    ans=Bisect_Int(1,K*10,is_ok)
    print(ans)
0