結果

問題 No.2559 眩しい数直線
ユーザー superzugansuperzugan
提出日時 2024-01-14 03:29:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,286 ms / 2,000 ms
コード長 317 bytes
コンパイル時間 76 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-09-28 01:56:24
合計ジャッジ時間 12,121 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 195 ms
10,624 KB
testcase_04 AC 216 ms
10,752 KB
testcase_05 AC 312 ms
10,752 KB
testcase_06 AC 1,286 ms
10,624 KB
testcase_07 AC 760 ms
10,880 KB
testcase_08 AC 670 ms
10,752 KB
testcase_09 AC 658 ms
10,624 KB
testcase_10 AC 204 ms
10,752 KB
testcase_11 AC 33 ms
10,752 KB
testcase_12 AC 75 ms
10,752 KB
testcase_13 AC 1,104 ms
10,752 KB
testcase_14 AC 907 ms
10,624 KB
testcase_15 AC 1,236 ms
10,624 KB
testcase_16 AC 54 ms
10,752 KB
testcase_17 AC 650 ms
10,624 KB
testcase_18 AC 219 ms
10,752 KB
testcase_19 AC 1,147 ms
10,752 KB
testcase_20 AC 372 ms
10,624 KB
testcase_21 AC 89 ms
10,752 KB
testcase_22 AC 812 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,x=map(int,input().split())
lst=[0]*x
for _ in range(n):
	a,b=map(int,input().split())
	a-=1
	i=0
	while(a+i<x or a-i>=0):
		if 0<=a+i<x:
			t=max(lst[a+i],max(b-(1*i),0))
			lst[a+i]=max(t,lst[a+i])
		if 0<=a-i<x:
			u=max(lst[a-i],max(b-(1*i),0))
			lst[a-i]=max(u,lst[a-i])
		# print("A:",lst)
		i+=1
print(*lst)
0