結果

問題 No.1722 [Cherry 3rd Tune C] In my way
ユーザー mrngmrng
提出日時 2021-11-21 13:17:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 338 bytes
コンパイル時間 435 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 64,600 KB
最終ジャッジ日時 2024-06-22 19:27:50
合計ジャッジ時間 2,379 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,896 KB
testcase_01 AC 40 ms
57,944 KB
testcase_02 AC 45 ms
62,144 KB
testcase_03 AC 45 ms
62,992 KB
testcase_04 AC 47 ms
61,404 KB
testcase_05 AC 42 ms
59,380 KB
testcase_06 AC 35 ms
53,212 KB
testcase_07 AC 42 ms
59,680 KB
testcase_08 AC 47 ms
62,496 KB
testcase_09 AC 39 ms
58,720 KB
testcase_10 AC 36 ms
53,244 KB
testcase_11 AC 49 ms
62,620 KB
testcase_12 AC 50 ms
63,416 KB
testcase_13 AC 49 ms
63,792 KB
testcase_14 AC 48 ms
62,816 KB
testcase_15 AC 47 ms
64,008 KB
testcase_16 AC 48 ms
64,512 KB
testcase_17 AC 48 ms
64,564 KB
testcase_18 AC 48 ms
64,600 KB
testcase_19 AC 47 ms
63,288 KB
testcase_20 AC 48 ms
63,948 KB
testcase_21 AC 34 ms
51,696 KB
testcase_22 AC 34 ms
52,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
x = list(map(int,input().split()))
y = list(map(int,input().split()))
y.sort()
def lower_bound(a,x):
	ng,ok = -1,len(a)
	while ok-ng>1:
		m = (ng+ok)//2
		if x<=a[m]: ok = m
		else: ng = m
	return ok
for i in range(n):
	t = lower_bound(y,x[i])
	if t==m:
		print('Infinity')
	else:
		d = y[t]-x[i]
		print(d)
0