結果

問題 No.2526 Kth Not-divisible Number
ユーザー sasa8uyauyasasa8uyauya
提出日時 2023-11-03 21:55:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 253 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 81,828 KB
実行使用メモリ 76,532 KB
最終ジャッジ日時 2023-11-03 21:55:51
合計ジャッジ時間 7,779 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,732 KB
testcase_01 AC 39 ms
53,732 KB
testcase_02 AC 36 ms
53,732 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 569 ms
76,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t=int(input())
import math
for _ in range(t):
  a,b,k=map(int,input().split())
  g=math.gcd(a,b)
  c=(a*b)//g
  l=50
  m=int(k*a*b*c/(a*b*c-a*c-b*c+a*b))
  for i in range(max(1,m-l),m+l):
    if i-(i//a+i//b-i//((a*b)//g))==k:
      print(i)
      break
0