結果

問題 No.2526 Kth Not-divisible Number
ユーザー sasa8uyauyasasa8uyauya
提出日時 2023-11-03 21:55:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 253 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 77,500 KB
最終ジャッジ日時 2024-09-25 20:08:32
合計ジャッジ時間 7,754 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 38 ms
52,224 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 573 ms
76,544 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