結果

問題 No.2559 眩しい数直線
ユーザー raspberry1729raspberry1729
提出日時 2023-12-02 14:45:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 189 ms / 2,000 ms
コード長 366 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-09-26 17:17:47
合計ジャッジ時間 2,964 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 49 ms
10,496 KB
testcase_04 AC 52 ms
10,624 KB
testcase_05 AC 67 ms
10,624 KB
testcase_06 AC 189 ms
10,752 KB
testcase_07 AC 124 ms
10,752 KB
testcase_08 AC 111 ms
10,752 KB
testcase_09 AC 106 ms
10,752 KB
testcase_10 AC 54 ms
10,624 KB
testcase_11 AC 29 ms
10,624 KB
testcase_12 AC 36 ms
10,624 KB
testcase_13 AC 160 ms
10,752 KB
testcase_14 AC 139 ms
10,752 KB
testcase_15 AC 188 ms
10,752 KB
testcase_16 AC 34 ms
10,624 KB
testcase_17 AC 107 ms
10,624 KB
testcase_18 AC 55 ms
10,752 KB
testcase_19 AC 170 ms
10,752 KB
testcase_20 AC 74 ms
10,624 KB
testcase_21 AC 37 ms
10,624 KB
testcase_22 AC 127 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b=map(int,input().split())
c=[0 for i in range(b)]
for i in range(a):
    d,e=map(int,input().split())
    if c[d-1]<e:
        c[d-1]=e
    f=c[:d-1]
    f=f[::-1]
    g=c[d:]
    for j in range(len(f)):
        if f[j] < e-j-1:
            f[j]=e-j-1
    for j in range(len(g)):
        if g[j] < e-j-1:
            g[j]=e-j-1
    c=f[::-1]+c[d-1:d]+g
print(*c)
0