結果

問題 No.1077 Noelちゃんと星々4
ユーザー stngstng
提出日時 2022-09-04 12:52:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 317 ms / 2,000 ms
コード長 321 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 154,112 KB
最終ジャッジ日時 2024-04-29 12:30:03
合計ジャッジ時間 5,018 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
60,928 KB
testcase_01 AC 58 ms
62,848 KB
testcase_02 AC 240 ms
115,840 KB
testcase_03 AC 282 ms
139,392 KB
testcase_04 AC 135 ms
93,056 KB
testcase_05 AC 122 ms
91,136 KB
testcase_06 AC 148 ms
93,056 KB
testcase_07 AC 157 ms
93,056 KB
testcase_08 AC 140 ms
93,184 KB
testcase_09 AC 133 ms
93,056 KB
testcase_10 AC 280 ms
139,392 KB
testcase_11 AC 208 ms
115,840 KB
testcase_12 AC 189 ms
112,896 KB
testcase_13 AC 120 ms
90,496 KB
testcase_14 AC 276 ms
138,752 KB
testcase_15 AC 186 ms
111,488 KB
testcase_16 AC 139 ms
92,928 KB
testcase_17 AC 196 ms
116,096 KB
testcase_18 AC 282 ms
138,752 KB
testcase_19 AC 119 ms
89,856 KB
testcase_20 AC 58 ms
61,312 KB
testcase_21 AC 317 ms
154,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
y = [int(i) for i in input().split()]

val = 10**4+1

dp = [[10**8]*val for i in range(n+1)]

rui = [0]*val

for i in range(n):
    for j in range(val):
        dp[i+1][j] = rui[j]+abs(j-y[i])
    rui[0] = dp[i+1][0]
    for j in range(1,val):
        rui[j] = min(rui[j-1],dp[i+1][j])

print(min(dp[n]))
0