結果

問題 No.1077 Noelちゃんと星々4
ユーザー AEnAEn
提出日時 2022-08-23 16:02:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 459 ms / 2,000 ms
コード長 333 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 229,888 KB
最終ジャッジ日時 2024-10-11 00:15:29
合計ジャッジ時間 6,699 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
61,696 KB
testcase_01 AC 60 ms
63,616 KB
testcase_02 AC 361 ms
177,152 KB
testcase_03 AC 396 ms
206,432 KB
testcase_04 AC 170 ms
109,444 KB
testcase_05 AC 163 ms
107,008 KB
testcase_06 AC 218 ms
122,980 KB
testcase_07 AC 230 ms
136,832 KB
testcase_08 AC 194 ms
120,672 KB
testcase_09 AC 169 ms
109,312 KB
testcase_10 AC 397 ms
206,236 KB
testcase_11 AC 303 ms
161,864 KB
testcase_12 AC 277 ms
147,456 KB
testcase_13 AC 146 ms
96,512 KB
testcase_14 AC 399 ms
204,528 KB
testcase_15 AC 253 ms
147,456 KB
testcase_16 AC 188 ms
121,728 KB
testcase_17 AC 267 ms
148,976 KB
testcase_18 AC 427 ms
215,872 KB
testcase_19 AC 143 ms
96,384 KB
testcase_20 AC 50 ms
59,264 KB
testcase_21 AC 459 ms
229,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
Y = list(map(int, input().split()))

dp = [[float('inf')]*(10**4+1) for _ in range(N)]
for i in range(10**4+1):
    dp[0][i] = abs(Y[0]-i)
for i in range(1, N):
    res = float('inf')
    for j in range(10**4+1):
        res = min(res, dp[i-1][j])
        dp[i][j] = min(dp[i][j], res)+abs(Y[i]-j)
print(min(dp[-1]))
0