結果

問題 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,324 KB
testcase_01 AC 42 ms
53,424 KB
testcase_02 AC 40 ms
53,944 KB
testcase_03 AC 679 ms
76,076 KB
testcase_04 AC 723 ms
76,012 KB
testcase_05 AC 677 ms
76,524 KB
testcase_06 AC 694 ms
76,356 KB
testcase_07 AC 690 ms
76,692 KB
testcase_08 AC 660 ms
76,344 KB
testcase_09 AC 662 ms
75,884 KB
testcase_10 AC 697 ms
76,268 KB
testcase_11 AC 596 ms
76,020 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