結果

問題 No.2526 Kth Not-divisible Number
ユーザー timitimi
提出日時 2023-11-03 22:06:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 365 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 76,600 KB
最終ジャッジ日時 2024-09-25 20:29:23
合計ジャッジ時間 5,694 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,224 KB
testcase_01 WA -
testcase_02 AC 36 ms
52,352 KB
testcase_03 AC 531 ms
75,996 KB
testcase_04 AC 521 ms
76,396 KB
testcase_05 AC 520 ms
76,600 KB
testcase_06 AC 517 ms
76,172 KB
testcase_07 AC 520 ms
76,164 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**7)
#sys.set_int_max_str_digits(0)

T=int(input())
import math
for _ in range(T):
  a,b,k=map(int, input().split())
  c=a*b//math.gcd(a,b)
  cc=c-c//a-c//b+1
  ans=c*(k//cc)
  k=k%cc 
  ok,ng=0,c+1
  while (ng-ok)>1:
    mid=(ok+ng)//2
    d=mid-mid//a-mid//b
    if d>=k:
      ng=mid 
    else:
      ok=mid 
  print(ans+ng)
  
0