結果

問題 No.2767 Add to Divide
ユーザー 👑 p-adicp-adic
提出日時 2024-05-08 14:36:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 313 ms / 2,000 ms
コード長 419 bytes
コンパイル時間 840 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,520 KB
最終ジャッジ日時 2024-12-14 19:26:20
合計ジャッジ時間 5,589 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
11,392 KB
testcase_01 AC 80 ms
11,392 KB
testcase_02 AC 172 ms
11,392 KB
testcase_03 AC 312 ms
11,392 KB
testcase_04 AC 290 ms
11,392 KB
testcase_05 AC 307 ms
11,392 KB
testcase_06 AC 300 ms
11,520 KB
testcase_07 AC 313 ms
11,392 KB
testcase_08 AC 309 ms
11,392 KB
testcase_09 AC 299 ms
11,264 KB
testcase_10 AC 305 ms
11,264 KB
testcase_11 AC 309 ms
11,264 KB
testcase_12 AC 300 ms
11,264 KB
testcase_13 AC 313 ms
11,520 KB
testcase_14 AC 302 ms
11,264 KB
testcase_15 AC 295 ms
11,392 KB
testcase_16 AC 304 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I,R,O=input,range,print
L=9**5
P=[]
C=[0]*L
for i in R(2,L):
	if C[i]<1:
		P+=[i]
		j=i*i
		while j<L:C[j],j=1,j+i
for t in R(int(I())):
	A,B=map(int,I().split())
	t=e=B-A
	if e:
		D=[1]
		for p in P:
			c=0
			while e%p<1:e//=p;c+=1;
			r=len(D)
			for i in R(c):D+=[n*p for n in D[-r:]]
		r=len(D)
		if e>1:D+=[n*e for n in D[-r:]];r*=2
		D.sort()
		r-=1
		while r and D[r-1]>=A:r-=1
	print(max(D[r]-A,-1)if e else 0)
0