結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 WA -
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 560 ms
76,160 KB
testcase_04 AC 520 ms
76,336 KB
testcase_05 AC 512 ms
76,128 KB
testcase_06 AC 542 ms
76,584 KB
testcase_07 AC 508 ms
76,160 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,k=c*(k//cc),k%cc 
  ok,ng=0,a*b
  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