結果

問題 No.1077 Noelちゃんと星々4
ユーザー neurousneurous
提出日時 2020-06-13 01:38:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 274 ms / 2,000 ms
コード長 376 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 154,028 KB
最終ジャッジ日時 2024-06-24 06:15:58
合計ジャッジ時間 4,224 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 200 ms
113,408 KB
testcase_03 AC 250 ms
136,320 KB
testcase_04 AC 116 ms
91,524 KB
testcase_05 AC 101 ms
90,648 KB
testcase_06 AC 124 ms
91,520 KB
testcase_07 AC 149 ms
91,504 KB
testcase_08 AC 118 ms
91,488 KB
testcase_09 AC 114 ms
91,136 KB
testcase_10 AC 251 ms
136,136 KB
testcase_11 AC 179 ms
113,536 KB
testcase_12 AC 161 ms
112,532 KB
testcase_13 AC 103 ms
90,112 KB
testcase_14 AC 251 ms
136,192 KB
testcase_15 AC 160 ms
111,532 KB
testcase_16 AC 116 ms
91,648 KB
testcase_17 AC 170 ms
114,048 KB
testcase_18 AC 247 ms
136,320 KB
testcase_19 AC 97 ms
89,856 KB
testcase_20 AC 42 ms
58,496 KB
testcase_21 AC 274 ms
154,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
a = list(map(int, input().split()))
mn = min(a)
for i in a:
    i -= mn
mx = max(a)
dp = [[0 for _ in range(mx+1)] for __ in range(N)]
for i in range(mx+1):
    dp[0][i] = abs(a[0]-i)

for i in range(1, N):
    mn = dp[i-1][0]
    for j in range(mx+1):
        mn = dp[i-1][j] if dp[i-1][j] < mn else mn
        dp[i][j] = mn + abs(a[i]-j)

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