結果

問題 No.1077 Noelちゃんと星々4
ユーザー d9etd9et
提出日時 2020-06-12 21:35:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 257 ms / 2,000 ms
コード長 295 bytes
コンパイル時間 374 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 154,296 KB
最終ジャッジ日時 2024-06-24 04:33:59
合計ジャッジ時間 4,137 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,948 KB
testcase_01 AC 40 ms
52,616 KB
testcase_02 AC 188 ms
113,932 KB
testcase_03 AC 232 ms
136,404 KB
testcase_04 AC 113 ms
91,612 KB
testcase_05 AC 100 ms
90,832 KB
testcase_06 AC 120 ms
91,596 KB
testcase_07 AC 139 ms
91,592 KB
testcase_08 AC 115 ms
91,556 KB
testcase_09 AC 109 ms
91,368 KB
testcase_10 AC 233 ms
136,824 KB
testcase_11 AC 169 ms
113,876 KB
testcase_12 AC 155 ms
112,616 KB
testcase_13 AC 104 ms
90,440 KB
testcase_14 AC 228 ms
136,792 KB
testcase_15 AC 154 ms
111,228 KB
testcase_16 AC 112 ms
91,708 KB
testcase_17 AC 161 ms
114,000 KB
testcase_18 AC 229 ms
136,772 KB
testcase_19 AC 97 ms
89,820 KB
testcase_20 AC 45 ms
59,368 KB
testcase_21 AC 257 ms
154,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int,input().split()))
mx = max(a)
dp = [[10**18 for i in range(mx+1)] for j in range(n+1)]
dp[0][0] = 0
for i in range(1,n+1):
    x = a[i-1]
    mn = 10**18
    for j in range(mx+1):
        mn = min(mn,dp[i-1][j])
        dp[i][j] = mn+abs(x-j)
print(min(dp[-1]))
0