結果

問題 No.2559 眩しい数直線
ユーザー tetztetz
提出日時 2023-12-02 14:57:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 307 bytes
コンパイル時間 444 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 73,984 KB
最終ジャッジ日時 2024-09-26 17:44:53
合計ジャッジ時間 2,780 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,840 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 41 ms
51,712 KB
testcase_03 AC 67 ms
64,768 KB
testcase_04 AC 67 ms
65,408 KB
testcase_05 AC 72 ms
67,200 KB
testcase_06 AC 94 ms
73,984 KB
testcase_07 AC 87 ms
71,552 KB
testcase_08 AC 85 ms
70,528 KB
testcase_09 AC 77 ms
68,480 KB
testcase_10 AC 68 ms
65,792 KB
testcase_11 AC 50 ms
59,136 KB
testcase_12 AC 58 ms
62,080 KB
testcase_13 AC 86 ms
71,936 KB
testcase_14 AC 98 ms
71,808 KB
testcase_15 AC 91 ms
72,448 KB
testcase_16 AC 64 ms
64,896 KB
testcase_17 AC 84 ms
70,784 KB
testcase_18 AC 70 ms
66,048 KB
testcase_19 AC 87 ms
71,808 KB
testcase_20 AC 78 ms
68,864 KB
testcase_21 AC 69 ms
65,792 KB
testcase_22 AC 86 ms
71,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, X = map(int, input().split())
ab = [list(map(int, input().split())) for _ in range(N)]
l = [0] * X
for ai, bi in ab:
    ai -= 1
    for j in range(bi):
        if ai - j >= 0:
            l[ai - j] = max(l[ai - j], bi - j)
        if ai + j < X:
            l[ai + j] = max(l[ai + j], bi - j)
print(*l)
0