結果

問題 No.2526 Kth Not-divisible Number
ユーザー naesiranaesira
提出日時 2023-11-28 18:51:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 721 ms / 2,000 ms
コード長 313 bytes
コンパイル時間 548 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 76,044 KB
最終ジャッジ日時 2023-11-28 18:51:41
合計ジャッジ時間 8,228 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,588 KB
testcase_01 AC 36 ms
53,588 KB
testcase_02 AC 36 ms
53,588 KB
testcase_03 AC 689 ms
76,044 KB
testcase_04 AC 721 ms
76,044 KB
testcase_05 AC 709 ms
76,044 KB
testcase_06 AC 694 ms
76,044 KB
testcase_07 AC 700 ms
76,044 KB
testcase_08 AC 665 ms
76,044 KB
testcase_09 AC 634 ms
76,044 KB
testcase_10 AC 683 ms
76,044 KB
testcase_11 AC 605 ms
76,044 KB
権限があれば一括ダウンロードができます

ソースコード

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