結果

問題 No.2559 眩しい数直線
ユーザー Basin-BugBasin-Bug
提出日時 2023-12-02 14:40:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 277 bytes
コンパイル時間 1,126 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 69,248 KB
最終ジャッジ日時 2024-09-26 17:05:09
合計ジャッジ時間 2,945 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,456 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 67 ms
64,768 KB
testcase_04 AC 68 ms
64,896 KB
testcase_05 AC 71 ms
65,920 KB
testcase_06 AC 89 ms
68,736 KB
testcase_07 AC 84 ms
68,736 KB
testcase_08 AC 85 ms
68,864 KB
testcase_09 AC 76 ms
66,432 KB
testcase_10 AC 69 ms
65,280 KB
testcase_11 AC 56 ms
61,952 KB
testcase_12 AC 63 ms
64,128 KB
testcase_13 AC 84 ms
67,712 KB
testcase_14 AC 89 ms
69,248 KB
testcase_15 AC 88 ms
69,120 KB
testcase_16 AC 65 ms
64,128 KB
testcase_17 AC 83 ms
68,608 KB
testcase_18 AC 67 ms
65,024 KB
testcase_19 AC 83 ms
67,328 KB
testcase_20 AC 73 ms
66,048 KB
testcase_21 AC 64 ms
64,512 KB
testcase_22 AC 82 ms
67,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, X = map(int, input().split())
lights = []
for i in range(N):
  a, b = map(int, input().split())
  lights.append([a, b])

for i in range(1, X + 1):
  ans = 0
  for m, n in lights:
    strong = max(0, n - abs(i - m))
    ans = max(ans, strong)
  print(ans, end = " ")

print()
0