結果

問題 No.2526 Kth Not-divisible Number
ユーザー moon17moon17
提出日時 2023-11-03 23:56:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 697 ms / 2,000 ms
コード長 242 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,732 KB
最終ジャッジ日時 2024-09-25 21:39:23
合計ジャッジ時間 7,937 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,608 KB
testcase_01 AC 39 ms
52,608 KB
testcase_02 AC 39 ms
52,480 KB
testcase_03 AC 692 ms
76,732 KB
testcase_04 AC 674 ms
76,632 KB
testcase_05 AC 669 ms
76,324 KB
testcase_06 AC 697 ms
76,060 KB
testcase_07 AC 696 ms
76,288 KB
testcase_08 AC 644 ms
75,996 KB
testcase_09 AC 608 ms
76,452 KB
testcase_10 AC 656 ms
76,132 KB
testcase_11 AC 575 ms
76,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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**19,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)
0