結果

問題 No.2559 眩しい数直線
ユーザー miztommiztom
提出日時 2024-03-15 13:01:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 154 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 75,648 KB
最終ジャッジ日時 2024-09-30 00:01:18
合計ジャッジ時間 2,494 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,456 KB
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 58 ms
64,256 KB
testcase_04 AC 57 ms
65,024 KB
testcase_05 AC 59 ms
66,944 KB
testcase_06 AC 76 ms
75,264 KB
testcase_07 AC 71 ms
73,472 KB
testcase_08 AC 68 ms
72,960 KB
testcase_09 AC 64 ms
70,400 KB
testcase_10 AC 58 ms
66,560 KB
testcase_11 AC 44 ms
59,392 KB
testcase_12 AC 50 ms
62,208 KB
testcase_13 AC 73 ms
75,136 KB
testcase_14 AC 69 ms
73,728 KB
testcase_15 AC 76 ms
75,648 KB
testcase_16 AC 52 ms
64,256 KB
testcase_17 AC 71 ms
71,680 KB
testcase_18 AC 62 ms
65,792 KB
testcase_19 AC 83 ms
75,648 KB
testcase_20 AC 68 ms
68,736 KB
testcase_21 AC 56 ms
64,256 KB
testcase_22 AC 74 ms
72,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,x=map(int,input().split())
l=[0]*-~x
for i in range(n):
    a,b=map(int,input().split())
    l=[max(b-abs(j-a),0,l[j])for j in range(x+1)]
print(*l[1:])
0