結果

問題 No.2526 Kth Not-divisible Number
ユーザー なえしらなえしら
提出日時 2023-11-28 18:44:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,976 ms / 2,000 ms
コード長 364 bytes
コンパイル時間 656 ms
コンパイル使用メモリ 82,692 KB
実行使用メモリ 84,336 KB
最終ジャッジ日時 2024-09-26 13:02:26
合計ジャッジ時間 19,929 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 35 ms
52,736 KB
testcase_02 AC 35 ms
51,712 KB
testcase_03 AC 1,969 ms
82,468 KB
testcase_04 AC 1,958 ms
81,952 KB
testcase_05 AC 1,969 ms
81,960 KB
testcase_06 AC 1,970 ms
82,404 KB
testcase_07 AC 1,945 ms
81,952 KB
testcase_08 AC 1,963 ms
81,796 KB
testcase_09 AC 1,933 ms
82,284 KB
testcase_10 AC 1,976 ms
81,816 KB
testcase_11 AC 1,656 ms
84,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import lcm
import sys
input = sys.stdin.readline

def is_ok(md):
  cnt = md - md//A - md//B + md//L
  return cnt >= K
def bis(ok, ng):
  while abs(ok - ng) > 1:
    md = (ng + ok) // 2
    if is_ok(md): ok = md
    else: ng = md
  return ok

for _ in range(T := int(input())):
  A, B, K = map(int, input().split())
  L = lcm(A, B)
  print(bis(10**19, 0))
0