結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
9,984 KB
testcase_01 AC 29 ms
9,984 KB
testcase_02 AC 28 ms
9,984 KB
testcase_03 AC 45 ms
9,984 KB
testcase_04 AC 47 ms
9,984 KB
testcase_05 AC 58 ms
9,984 KB
testcase_06 AC 160 ms
10,112 KB
testcase_07 AC 117 ms
10,112 KB
testcase_08 AC 97 ms
9,984 KB
testcase_09 AC 94 ms
10,112 KB
testcase_10 AC 48 ms
9,984 KB
testcase_11 AC 27 ms
9,984 KB
testcase_12 AC 32 ms
9,984 KB
testcase_13 AC 146 ms
10,112 KB
testcase_14 AC 122 ms
10,112 KB
testcase_15 AC 155 ms
10,112 KB
testcase_16 AC 30 ms
10,112 KB
testcase_17 AC 100 ms
9,984 KB
testcase_18 AC 50 ms
9,984 KB
testcase_19 AC 155 ms
10,112 KB
testcase_20 AC 68 ms
9,984 KB
testcase_21 AC 33 ms
10,112 KB
testcase_22 AC 118 ms
10,112 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