結果

問題 No.2559 眩しい数直線
ユーザー lloyzlloyz
提出日時 2023-12-05 00:01:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 237 bytes
コンパイル時間 413 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 68,352 KB
最終ジャッジ日時 2024-09-26 23:23:51
合計ジャッジ時間 2,661 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,584 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 40 ms
51,712 KB
testcase_03 AC 55 ms
61,568 KB
testcase_04 AC 56 ms
62,336 KB
testcase_05 AC 63 ms
66,048 KB
testcase_06 AC 76 ms
68,352 KB
testcase_07 AC 70 ms
67,328 KB
testcase_08 AC 69 ms
66,432 KB
testcase_09 AC 69 ms
66,944 KB
testcase_10 AC 63 ms
66,048 KB
testcase_11 AC 47 ms
59,008 KB
testcase_12 AC 55 ms
63,616 KB
testcase_13 AC 72 ms
68,352 KB
testcase_14 AC 72 ms
67,328 KB
testcase_15 AC 73 ms
67,968 KB
testcase_16 AC 57 ms
62,464 KB
testcase_17 AC 70 ms
66,560 KB
testcase_18 AC 60 ms
62,848 KB
testcase_19 AC 73 ms
67,840 KB
testcase_20 AC 65 ms
66,176 KB
testcase_21 AC 55 ms
62,464 KB
testcase_22 AC 67 ms
67,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

0