結果

問題 No.1077 Noelちゃんと星々4
ユーザー SalmonizeSalmonize
提出日時 2020-06-12 21:27:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 559 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 18,460 KB
最終ジャッジ日時 2024-06-24 04:24:57
合計ジャッジ時間 6,538 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
18,460 KB
testcase_01 AC 70 ms
11,520 KB
testcase_02 TLE -
testcase_03 TLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

readline = sys.stdin.readline
readall = sys.stdin.read
ns = lambda: readline().rstrip()
ni = lambda: int(readline().rstrip())
nm = lambda: map(int, readline().split())
nl = lambda: list(map(int, readline().split()))
prn = lambda x: print(*x, sep='\n')

def solve():
    n = ni()
    m = 10**4 + 1
    l = nl()
    prv = [0]*m
    nxt = [0]*m
    for x in l:
        cur = prv[0]
        for i in range(m):
            cur = min(cur, prv[i])
            nxt[i] = abs(i - x) + cur
        prv, nxt = nxt, prv
    print(min(prv))
    return

solve()
0