結果

問題 No.2559 眩しい数直線
ユーザー ゼットゼット
提出日時 2023-12-20 23:35:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 231 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 71,808 KB
最終ジャッジ日時 2024-09-27 10:16:17
合計ジャッジ時間 2,591 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,380 KB
testcase_01 AC 39 ms
52,524 KB
testcase_02 AC 37 ms
52,448 KB
testcase_03 AC 59 ms
64,972 KB
testcase_04 AC 64 ms
64,916 KB
testcase_05 AC 64 ms
68,288 KB
testcase_06 AC 75 ms
71,808 KB
testcase_07 AC 70 ms
68,156 KB
testcase_08 AC 67 ms
68,804 KB
testcase_09 AC 66 ms
68,612 KB
testcase_10 AC 65 ms
68,764 KB
testcase_11 AC 46 ms
61,376 KB
testcase_12 AC 60 ms
64,032 KB
testcase_13 AC 75 ms
70,404 KB
testcase_14 AC 70 ms
70,180 KB
testcase_15 AC 77 ms
70,388 KB
testcase_16 AC 57 ms
65,704 KB
testcase_17 AC 69 ms
68,788 KB
testcase_18 AC 60 ms
65,724 KB
testcase_19 AC 70 ms
69,164 KB
testcase_20 AC 66 ms
68,288 KB
testcase_21 AC 61 ms
67,360 KB
testcase_22 AC 66 ms
68,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,X=map(int,input().split())
result=[0]*(X+1)
for i in range(N):
  a,b=map(int,input().split())
  for j in range(a-b,a+b+1):
    if j<0 or j>X:
      continue
    result[j]=max(result[j],b-abs(a-j))
result=result[1:]
print(*result)
0