結果
問題 | No.2526 Kth Not-divisible Number |
ユーザー | vwxyz |
提出日時 | 2024-08-09 06:09:52 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 467 bytes |
コンパイル時間 | 432 ms |
コンパイル使用メモリ | 82,132 KB |
実行使用メモリ | 79,072 KB |
最終ジャッジ日時 | 2024-08-09 06:10:05 |
合計ジャッジ時間 | 12,879 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
52,192 KB |
testcase_01 | AC | 37 ms
53,692 KB |
testcase_02 | AC | 37 ms
52,520 KB |
testcase_03 | AC | 904 ms
76,980 KB |
testcase_04 | AC | 846 ms
76,696 KB |
testcase_05 | AC | 879 ms
76,820 KB |
testcase_06 | AC | 805 ms
76,816 KB |
testcase_07 | AC | 887 ms
77,208 KB |
testcase_08 | AC | 822 ms
76,792 KB |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | AC | 397 ms
77,452 KB |
ソースコード
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*10,is_ok) print(ans)