結果
問題 | No.2526 Kth Not-divisible Number |
ユーザー | bluebery1001 |
提出日時 | 2023-11-03 21:41:31 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 382 bytes |
コンパイル時間 | 471 ms |
コンパイル使用メモリ | 82,192 KB |
実行使用メモリ | 78,328 KB |
最終ジャッジ日時 | 2024-09-25 19:44:51 |
合計ジャッジ時間 | 21,948 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
52,224 KB |
testcase_01 | AC | 40 ms
52,480 KB |
testcase_02 | AC | 39 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 | TLE | - |
ソースコード
import math t=int(input()) for i in range(t): a,b,k = map(int,input().split()) lc = (a*b)//math.gcd(a,b) ok = k ng = 20000000000000000000 while abs(ok-ng)>1: mid = (ok+ng)//2 cna = mid//a cnb = mid//b cnab = mid//(lc) if (mid-(cna+cnb-cnab)<=k):ok=mid else:ng = mid while ok%a==0 or ok%b==0:ok-=1 print(ok)