結果

問題 No.2526 Kth Not-divisible Number
ユーザー KoiKoi
提出日時 2023-11-03 21:43:28
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 537 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 82,944 KB
実行使用メモリ 85,504 KB
最終ジャッジ日時 2024-09-25 19:49:35
合計ジャッジ時間 20,337 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,864 KB
testcase_01 AC 42 ms
52,608 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 1,762 ms
85,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
T=int(input())
answers=[]
def solve(A,B,K):
    c=math.lcm(A,B)
    ng=0
    ok=10**19
    while (ok-ng)>1:
        m=(ok+ng)//2
        if(m-(m//B)-(m//A)+(m//c)>=K):
            ok=m
        else:
            ng=m
    return ok
def gutyoku(A,B,K):
    ans=0
    while K>0:
        ans+=1
        if(ans%A==0 or ans%B==0):
            continue
        else:
            K-=1
    return ans

for i in range(T):
    A,B,K=map(int,input().split())
    ans=solve(A,B,K)
    answers.append(ans)
for ans in answers:
    print(ans)
0