結果

問題 No.2559 眩しい数直線
ユーザー AlgeotAlgeot
提出日時 2023-12-08 00:04:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 234 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 70,912 KB
最終ジャッジ日時 2024-09-27 02:27:42
合計ジャッジ時間 2,707 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,584 KB
testcase_01 AC 37 ms
51,456 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 58 ms
64,000 KB
testcase_04 AC 55 ms
64,640 KB
testcase_05 AC 58 ms
66,560 KB
testcase_06 AC 72 ms
70,656 KB
testcase_07 AC 64 ms
69,760 KB
testcase_08 AC 65 ms
70,656 KB
testcase_09 AC 60 ms
67,200 KB
testcase_10 AC 54 ms
65,920 KB
testcase_11 AC 41 ms
59,136 KB
testcase_12 AC 45 ms
61,440 KB
testcase_13 AC 64 ms
69,504 KB
testcase_14 AC 66 ms
70,656 KB
testcase_15 AC 69 ms
70,912 KB
testcase_16 AC 51 ms
64,384 KB
testcase_17 AC 66 ms
69,504 KB
testcase_18 AC 52 ms
64,512 KB
testcase_19 AC 65 ms
70,144 KB
testcase_20 AC 58 ms
67,456 KB
testcase_21 AC 49 ms
64,512 KB
testcase_22 AC 62 ms
69,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, X = map(int, input().split())
C = [0] * (X + 1)
S = [list(map(int, input().split())) for _ in range(N)]
for a, b in S:
    for x in range(1, X + 1):
        cand = max(b - abs(x - a), 0)
        C[x] = max(C[x], cand)
print(*C[1:])
0