結果

問題 No.2526 Kth Not-divisible Number
ユーザー なえしら
提出日時 2023-11-28 18:51:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 723 ms / 2,000 ms
コード長 313 bytes
コンパイル時間 763 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 76,692 KB
最終ジャッジ日時 2024-09-26 13:03:00
合計ジャッジ時間 8,038 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import lcm

def cnt_indivisible(n):
	return n - n//A - n//B + n//L
	
for _ in range(T := int(input())):
  A, B, K = map(int, input().split())
  L = lcm(A, B)
  
  ng, ok = 0, 10**19
  while ok - ng > 1:
  	md = (ng + ok)//2
  	if cnt_indivisible(md) >= K:
  		ok = md
  	else:
  		ng = md
  
  print(ok)
0