結果

問題 No.2526 Kth Not-divisible Number
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-04-02 00:47:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 277 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,588 KB
実行使用メモリ 76,732 KB
最終ジャッジ日時 2024-09-30 22:57:04
合計ジャッジ時間 6,514 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,592 KB
testcase_01 WA -
testcase_02 AC 36 ms
52,824 KB
testcase_03 AC 556 ms
76,244 KB
testcase_04 AC 557 ms
76,032 KB
testcase_05 AC 570 ms
76,380 KB
testcase_06 AC 566 ms
76,672 KB
testcase_07 AC 561 ms
76,308 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 501 ms
76,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
t = int(input())
for _ in range(t):
	a, b, k = map(int, input().split())
	l = math.lcm(a, b)
	lo, hi = 0, 2 * 10 ** 18
	while lo + 1 < hi:
		mid = (lo + hi) // 2
		cnt = mid - mid // a - mid // b + mid // l
		if cnt >= k:
			hi = mid
		else:
			lo = mid
	print(hi)
0