結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,352 KB
testcase_01 AC 37 ms
52,480 KB
testcase_02 AC 34 ms
52,352 KB
testcase_03 AC 599 ms
76,544 KB
testcase_04 AC 583 ms
76,324 KB
testcase_05 AC 592 ms
76,312 KB
testcase_06 AC 594 ms
76,032 KB
testcase_07 AC 586 ms
76,032 KB
testcase_08 AC 581 ms
76,608 KB
testcase_09 AC 522 ms
76,032 KB
testcase_10 AC 569 ms
76,416 KB
testcase_11 AC 518 ms
76,544 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, 9 * 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