結果

問題 No.1077 Noelちゃんと星々4
ユーザー ttrttr
提出日時 2020-06-12 21:52:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 292 ms / 2,000 ms
コード長 304 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 154,412 KB
最終ジャッジ日時 2024-06-24 04:53:23
合計ジャッジ時間 4,716 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
52,096 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 215 ms
116,416 KB
testcase_03 AC 259 ms
139,296 KB
testcase_04 AC 132 ms
93,228 KB
testcase_05 AC 120 ms
91,008 KB
testcase_06 AC 139 ms
93,312 KB
testcase_07 AC 144 ms
93,312 KB
testcase_08 AC 136 ms
93,056 KB
testcase_09 AC 129 ms
93,312 KB
testcase_10 AC 253 ms
138,868 KB
testcase_11 AC 196 ms
116,096 KB
testcase_12 AC 176 ms
112,908 KB
testcase_13 AC 116 ms
90,148 KB
testcase_14 AC 255 ms
139,008 KB
testcase_15 AC 170 ms
111,488 KB
testcase_16 AC 120 ms
93,312 KB
testcase_17 AC 177 ms
115,912 KB
testcase_18 AC 255 ms
139,136 KB
testcase_19 AC 107 ms
89,856 KB
testcase_20 AC 44 ms
57,984 KB
testcase_21 AC 292 ms
154,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
Y = [int(y) for y in input().split()]

M = max(Y)
dp = [[0]*(M+1) for _ in range(N)]

for j in range(M+1):
    dp[0][j] = abs(j-Y[0])

for i in range(1, N):
    m = dp[i-1][0]
    for j in range(M+1):
        m = min(m, dp[i-1][j])
        dp[i][j] = m + abs(Y[i]-j)

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