結果

問題 No.1077 Noelちゃんと星々4
ユーザー c-yanc-yan
提出日時 2020-06-14 10:33:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 254 ms / 2,000 ms
コード長 266 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 154,176 KB
最終ジャッジ日時 2024-06-27 01:57:52
合計ジャッジ時間 4,302 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
60,868 KB
testcase_01 AC 48 ms
61,492 KB
testcase_02 AC 201 ms
129,784 KB
testcase_03 AC 248 ms
145,848 KB
testcase_04 AC 115 ms
96,988 KB
testcase_05 AC 101 ms
90,816 KB
testcase_06 AC 133 ms
103,016 KB
testcase_07 AC 162 ms
107,368 KB
testcase_08 AC 120 ms
98,624 KB
testcase_09 AC 114 ms
95,380 KB
testcase_10 AC 244 ms
145,324 KB
testcase_11 AC 175 ms
120,876 KB
testcase_12 AC 157 ms
113,136 KB
testcase_13 AC 103 ms
90,360 KB
testcase_14 AC 239 ms
144,016 KB
testcase_15 AC 152 ms
111,764 KB
testcase_16 AC 119 ms
99,252 KB
testcase_17 AC 163 ms
116,600 KB
testcase_18 AC 238 ms
146,956 KB
testcase_19 AC 97 ms
89,920 KB
testcase_20 AC 46 ms
61,576 KB
testcase_21 AC 254 ms
154,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
Y = list(map(int, input().split()))

dp = [[0] * (10 ** 4 + 1) for _ in range(N)]

for i in range(N):
    t = float('inf')
    for j in range(10 ** 4 + 1):
        t = min(t, dp[i - 1][j])
        dp[i][j] = t + abs(Y[i] - j)

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