結果

問題 No.1077 Noelちゃんと星々4
ユーザー stngstng
提出日時 2022-09-04 12:53:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 281 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,144 KB
実行使用メモリ 66,176 KB
最終ジャッジ日時 2024-11-18 15:39:16
合計ジャッジ時間 3,346 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
60,288 KB
testcase_01 AC 50 ms
61,696 KB
testcase_02 AC 147 ms
65,664 KB
testcase_03 AC 161 ms
66,048 KB
testcase_04 AC 90 ms
65,604 KB
testcase_05 AC 80 ms
64,896 KB
testcase_06 AC 96 ms
65,664 KB
testcase_07 AC 104 ms
63,744 KB
testcase_08 AC 88 ms
65,280 KB
testcase_09 AC 86 ms
65,536 KB
testcase_10 AC 159 ms
65,792 KB
testcase_11 AC 120 ms
65,408 KB
testcase_12 AC 111 ms
65,664 KB
testcase_13 AC 78 ms
64,896 KB
testcase_14 AC 159 ms
66,176 KB
testcase_15 AC 112 ms
65,664 KB
testcase_16 AC 94 ms
63,744 KB
testcase_17 AC 118 ms
65,792 KB
testcase_18 AC 164 ms
66,048 KB
testcase_19 AC 76 ms
64,640 KB
testcase_20 AC 48 ms
60,800 KB
testcase_21 AC 180 ms
65,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

val = 10**4+1

dp = [10**8]*val

rui = [0]*val

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

print(min(dp))
0