結果
問題 | No.2526 Kth Not-divisible Number |
ユーザー | moon17 |
提出日時 | 2023-11-03 22:39:26 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 242 bytes |
コンパイル時間 | 325 ms |
コンパイル使用メモリ | 82,076 KB |
実行使用メモリ | 77,872 KB |
最終ジャッジ日時 | 2024-09-25 21:02:59 |
合計ジャッジ時間 | 21,714 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
52,608 KB |
testcase_01 | AC | 39 ms
52,480 KB |
testcase_02 | AC | 38 ms
52,480 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,949 ms
76,972 KB |
ソースコード
from math import* t=int(input()) for _ in range(t): a,b,k=map(int,input().split()) l=a*b//gcd(a,b) ok,ng=10**20,0 while abs(ok-ng)>1: mid=ok+ng>>1 if k<=mid+mid//l-mid//a-mid//b: ok=mid else: ng=mid print(ok)