結果

問題 No.1077 Noelちゃんと星々4
ユーザー qumazakiqumazaki
提出日時 2020-06-13 00:44:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 285 ms / 2,000 ms
コード長 331 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 154,368 KB
最終ジャッジ日時 2024-06-24 06:13:42
合計ジャッジ時間 4,565 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
60,544 KB
testcase_01 AC 48 ms
61,696 KB
testcase_02 AC 209 ms
115,968 KB
testcase_03 AC 262 ms
138,880 KB
testcase_04 AC 116 ms
93,312 KB
testcase_05 AC 107 ms
91,564 KB
testcase_06 AC 132 ms
93,432 KB
testcase_07 AC 136 ms
92,800 KB
testcase_08 AC 122 ms
93,540 KB
testcase_09 AC 115 ms
92,928 KB
testcase_10 AC 260 ms
138,880 KB
testcase_11 AC 192 ms
115,968 KB
testcase_12 AC 177 ms
112,640 KB
testcase_13 AC 105 ms
90,240 KB
testcase_14 AC 259 ms
138,496 KB
testcase_15 AC 171 ms
111,232 KB
testcase_16 AC 121 ms
92,928 KB
testcase_17 AC 181 ms
116,352 KB
testcase_18 AC 264 ms
138,752 KB
testcase_19 AC 103 ms
89,216 KB
testcase_20 AC 45 ms
60,416 KB
testcase_21 AC 285 ms
154,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
y = list(map(int,input().split()))

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

for i in range(1,n+1):
    for j in range(10**4+1):
        if(j==0):
            dp[i][j] = dp[i-1][j] + abs(j-y[i-1])
        else:
            dp[i][j] = min(dp[i][j-1], dp[i-1][j] + abs(j-y[i-1]))

print(min(dp[i]))
0