結果

問題 No.1077 Noelちゃんと星々4
ユーザー mirucamiruca
提出日時 2020-06-13 11:38:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 244 ms / 2,000 ms
コード長 308 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 153,860 KB
最終ジャッジ日時 2024-06-24 23:36:17
合計ジャッジ時間 4,032 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,068 KB
testcase_01 AC 38 ms
53,924 KB
testcase_02 AC 190 ms
116,232 KB
testcase_03 AC 227 ms
138,872 KB
testcase_04 AC 107 ms
93,540 KB
testcase_05 AC 96 ms
90,752 KB
testcase_06 AC 118 ms
93,140 KB
testcase_07 AC 136 ms
93,132 KB
testcase_08 AC 109 ms
92,996 KB
testcase_09 AC 106 ms
93,316 KB
testcase_10 AC 231 ms
138,956 KB
testcase_11 AC 163 ms
116,128 KB
testcase_12 AC 150 ms
112,856 KB
testcase_13 AC 97 ms
90,536 KB
testcase_14 AC 224 ms
138,748 KB
testcase_15 AC 146 ms
111,564 KB
testcase_16 AC 110 ms
93,172 KB
testcase_17 AC 156 ms
116,336 KB
testcase_18 AC 222 ms
138,928 KB
testcase_19 AC 92 ms
89,584 KB
testcase_20 AC 40 ms
58,228 KB
testcase_21 AC 244 ms
153,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

mx = max(Y)
INF = 10 ** 18
dp = [[INF] * (mx + 1) for _ in range(n + 1)]
dp[0][0] = 0
for i in range(1, n + 1):
    mn = 10 ** 18
    for j in range(mx + 1):
        mn = min(mn, dp[i - 1][j])
        dp[i][j] = mn + abs(Y[i - 1] - j)

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