結果

問題 No.1077 Noelちゃんと星々4
ユーザー stngstng
提出日時 2022-09-04 12:52:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 289 ms / 2,000 ms
コード長 321 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 154,120 KB
最終ジャッジ日時 2024-11-18 15:38:19
合計ジャッジ時間 4,659 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
61,940 KB
testcase_01 AC 52 ms
63,140 KB
testcase_02 AC 222 ms
115,568 KB
testcase_03 AC 260 ms
138,892 KB
testcase_04 AC 120 ms
93,104 KB
testcase_05 AC 107 ms
90,692 KB
testcase_06 AC 135 ms
93,248 KB
testcase_07 AC 143 ms
93,360 KB
testcase_08 AC 123 ms
93,140 KB
testcase_09 AC 118 ms
93,188 KB
testcase_10 AC 260 ms
139,364 KB
testcase_11 AC 187 ms
116,248 KB
testcase_12 AC 170 ms
112,940 KB
testcase_13 AC 105 ms
90,632 KB
testcase_14 AC 257 ms
138,436 KB
testcase_15 AC 169 ms
111,704 KB
testcase_16 AC 128 ms
93,092 KB
testcase_17 AC 183 ms
116,080 KB
testcase_18 AC 262 ms
138,820 KB
testcase_19 AC 102 ms
89,660 KB
testcase_20 AC 49 ms
61,596 KB
testcase_21 AC 289 ms
154,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
y = [int(i) for i in input().split()]

val = 10**4+1

dp = [[10**8]*val for i in range(n+1)]

rui = [0]*val

for i in range(n):
    for j in range(val):
        dp[i+1][j] = rui[j]+abs(j-y[i])
    rui[0] = dp[i+1][0]
    for j in range(1,val):
        rui[j] = min(rui[j-1],dp[i+1][j])

print(min(dp[n]))
0