結果

問題 No.2526 Kth Not-divisible Number
ユーザー 👑 p-adicp-adic
提出日時 2023-07-07 00:16:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,069 ms / 2,000 ms
コード長 226 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 81,936 KB
実行使用メモリ 76,600 KB
最終ジャッジ日時 2024-09-25 19:10:10
合計ジャッジ時間 6,893 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,156 KB
testcase_01 AC 41 ms
52,936 KB
testcase_02 AC 38 ms
53,712 KB
testcase_03 AC 554 ms
76,052 KB
testcase_04 AC 542 ms
76,140 KB
testcase_05 AC 543 ms
76,288 KB
testcase_06 AC 531 ms
75,904 KB
testcase_07 AC 534 ms
76,008 KB
testcase_08 AC 519 ms
76,600 KB
testcase_09 AC 1,069 ms
76,416 KB
testcase_10 AC 603 ms
76,288 KB
testcase_11 AC 324 ms
75,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I=input
def f():
	return N-N//A-N//B+N//C
for t in range(int(I())):
	A,B,K=map(int,I().split())
	C,D=A,B
	if A>B:C,D=D,C
	while C:C,D=D%C,C
	C=A*B//D
	N=int((K+1)/(1-1/A-1/B+1/C))
	while f()>=K:N-=1
	while f()<K:N+=1
	print(N)
0