結果

問題 No.2559 眩しい数直線
ユーザー KudeKude
提出日時 2023-12-12 22:31:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 343 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 64,896 KB
最終ジャッジ日時 2024-09-27 05:02:56
合計ジャッジ時間 2,470 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,840 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 41 ms
51,584 KB
testcase_03 AC 46 ms
53,376 KB
testcase_04 AC 52 ms
59,520 KB
testcase_05 AC 52 ms
59,520 KB
testcase_06 AC 64 ms
64,896 KB
testcase_07 AC 61 ms
63,104 KB
testcase_08 AC 61 ms
62,336 KB
testcase_09 AC 58 ms
62,080 KB
testcase_10 AC 48 ms
54,016 KB
testcase_11 AC 43 ms
52,864 KB
testcase_12 AC 44 ms
52,736 KB
testcase_13 AC 61 ms
63,488 KB
testcase_14 AC 61 ms
63,360 KB
testcase_15 AC 65 ms
64,256 KB
testcase_16 AC 52 ms
60,416 KB
testcase_17 AC 58 ms
61,824 KB
testcase_18 AC 51 ms
59,264 KB
testcase_19 AC 62 ms
63,360 KB
testcase_20 AC 53 ms
60,032 KB
testcase_21 AC 51 ms
60,288 KB
testcase_22 AC 59 ms
63,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, x = map(int, input().split())
ans = [0] * x
d = [0] * x
for _ in range(n):
    a, b = map(int, input().split())
    a -= 1
    d[a] = max(d[a], b)
ans = [0] * x
for _ in range(2):
    now = 0
    for i in range(x):
        now = max(d[i], now)
        ans[i] = max(ans[i], now)
        now -= 1
    ans.reverse()
    d.reverse()
print(*ans)
0