結果

問題 No.1077 Noelちゃんと星々4
ユーザー neterukunneterukun
提出日時 2020-06-12 21:44:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 338 ms / 2,000 ms
コード長 415 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,788 KB
実行使用メモリ 154,688 KB
最終ジャッジ日時 2024-06-24 04:43:53
合計ジャッジ時間 5,192 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
62,240 KB
testcase_01 AC 51 ms
63,468 KB
testcase_02 AC 250 ms
130,048 KB
testcase_03 AC 304 ms
145,964 KB
testcase_04 AC 135 ms
97,360 KB
testcase_05 AC 117 ms
91,208 KB
testcase_06 AC 158 ms
103,420 KB
testcase_07 AC 182 ms
107,936 KB
testcase_08 AC 143 ms
98,900 KB
testcase_09 AC 130 ms
96,008 KB
testcase_10 AC 305 ms
146,072 KB
testcase_11 AC 221 ms
121,288 KB
testcase_12 AC 193 ms
113,136 KB
testcase_13 AC 114 ms
90,536 KB
testcase_14 AC 300 ms
144,380 KB
testcase_15 AC 191 ms
112,420 KB
testcase_16 AC 143 ms
99,312 KB
testcase_17 AC 201 ms
116,972 KB
testcase_18 AC 308 ms
147,092 KB
testcase_19 AC 112 ms
89,928 KB
testcase_20 AC 47 ms
61,236 KB
testcase_21 AC 338 ms
154,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
y = list(map(int, input().split()))
INF = 10 ** 9

ans = 10 ** 18
dp = [[INF] * (10 ** 4 + 1) for i in range(n + 1)]
dp[0][0] = 0

for i in range(n):
    ru = [INF] * (10 ** 4 + 2)
    for height in range(10 ** 4 + 1):
        ru[height + 1] = min(ru[height], dp[i][height])
    for height in range(10 ** 4 + 1):  
        dp[i + 1][height] = ru[height + 1] + abs(height - y[i])

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