結果

問題 No.1077 Noelちゃんと星々4
ユーザー 👑 KazunKazun
提出日時 2020-06-12 23:46:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 268 ms / 2,000 ms
コード長 285 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 154,644 KB
最終ジャッジ日時 2024-06-24 06:06:38
合計ジャッジ時間 4,356 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
61,808 KB
testcase_01 AC 54 ms
65,076 KB
testcase_02 AC 218 ms
129,876 KB
testcase_03 AC 249 ms
138,032 KB
testcase_04 AC 119 ms
92,224 KB
testcase_05 AC 108 ms
91,792 KB
testcase_06 AC 128 ms
92,304 KB
testcase_07 AC 163 ms
107,644 KB
testcase_08 AC 121 ms
92,600 KB
testcase_09 AC 117 ms
92,452 KB
testcase_10 AC 254 ms
138,004 KB
testcase_11 AC 180 ms
115,228 KB
testcase_12 AC 163 ms
113,524 KB
testcase_13 AC 106 ms
90,928 KB
testcase_14 AC 246 ms
138,080 KB
testcase_15 AC 159 ms
111,816 KB
testcase_16 AC 119 ms
92,308 KB
testcase_17 AC 170 ms
115,196 KB
testcase_18 AC 238 ms
137,864 KB
testcase_19 AC 103 ms
89,844 KB
testcase_20 AC 50 ms
62,720 KB
testcase_21 AC 268 ms
154,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from copy import copy
F=10**10

N=int(input())
Y=list(map(int,input().split()))
D=[[F]*(10**4+1) for _ in range(N+1)]
D[0][1]=0

for i in range(N):
    y=Y[i]
    m=F

    for j in range(10**4+1):
        m=min(m,D[i][j])
        D[i+1][j]=min(D[i+1][j],m+abs(y-j))

print(min(D[-1]))
0