結果

問題 No.1077 Noelちゃんと星々4
ユーザー nehan_der_thalnehan_der_thal
提出日時 2020-06-12 22:07:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 278 ms / 2,000 ms
コード長 287 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 154,412 KB
最終ジャッジ日時 2024-06-24 05:06:07
合計ジャッジ時間 4,538 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,376 KB
testcase_01 AC 40 ms
54,004 KB
testcase_02 AC 216 ms
115,924 KB
testcase_03 AC 258 ms
138,884 KB
testcase_04 AC 117 ms
93,276 KB
testcase_05 AC 105 ms
90,984 KB
testcase_06 AC 132 ms
93,304 KB
testcase_07 AC 136 ms
93,120 KB
testcase_08 AC 122 ms
92,932 KB
testcase_09 AC 116 ms
93,324 KB
testcase_10 AC 254 ms
139,020 KB
testcase_11 AC 187 ms
116,308 KB
testcase_12 AC 169 ms
112,800 KB
testcase_13 AC 107 ms
90,324 KB
testcase_14 AC 251 ms
139,092 KB
testcase_15 AC 163 ms
111,168 KB
testcase_16 AC 122 ms
93,052 KB
testcase_17 AC 177 ms
116,320 KB
testcase_18 AC 253 ms
138,952 KB
testcase_19 AC 104 ms
89,784 KB
testcase_20 AC 45 ms
59,496 KB
testcase_21 AC 278 ms
154,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, = map(int, input().split())
X = list(map(int, input().split()))
M = max(X)
dp = [[0]*(M+1) for _ in range(N+1)]
for i in range(1, N+1):
    mnr = 10**18
    for j in range(M+1):
        dp[i][j] = min(mnr, dp[i-1][j]+abs(j-X[i-1]))
        mnr = min(dp[i][j], mnr)
print(min(dp[-1]))
0