結果

問題 No.1077 Noelちゃんと星々4
ユーザー roarisroaris
提出日時 2020-06-27 07:06:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 392 ms / 2,000 ms
コード長 347 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 158,048 KB
最終ジャッジ日時 2024-07-05 08:50:31
合計ジャッジ時間 5,604 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
67,200 KB
testcase_01 AC 53 ms
71,820 KB
testcase_02 AC 291 ms
132,408 KB
testcase_03 AC 351 ms
149,308 KB
testcase_04 AC 148 ms
97,532 KB
testcase_05 AC 127 ms
91,684 KB
testcase_06 AC 184 ms
104,124 KB
testcase_07 AC 207 ms
108,532 KB
testcase_08 AC 157 ms
99,544 KB
testcase_09 AC 144 ms
96,176 KB
testcase_10 AC 358 ms
149,716 KB
testcase_11 AC 251 ms
124,104 KB
testcase_12 AC 218 ms
114,996 KB
testcase_13 AC 127 ms
90,948 KB
testcase_14 AC 351 ms
148,056 KB
testcase_15 AC 215 ms
114,040 KB
testcase_16 AC 164 ms
100,500 KB
testcase_17 AC 234 ms
118,992 KB
testcase_18 AC 366 ms
151,232 KB
testcase_19 AC 123 ms
90,364 KB
testcase_20 AC 46 ms
63,144 KB
testcase_21 AC 392 ms
158,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

for i in range(N):
    acc = [10**18]
    
    for j in range(10**4+1):
        acc.append(min(acc[-1], dp[i][j]))
    
    for j in range(10**4+1):
        dp[i+1][j] = acc[j+1]+abs(Y[i]-j)
    
print(min(dp[N]))
0