結果

問題 No.1077 Noelちゃんと星々4
ユーザー stngstng
提出日時 2022-09-04 12:53:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 182 ms / 2,000 ms
コード長 281 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 65,920 KB
最終ジャッジ日時 2024-04-29 12:31:02
合計ジャッジ時間 3,585 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
60,032 KB
testcase_01 AC 54 ms
61,568 KB
testcase_02 AC 155 ms
65,280 KB
testcase_03 AC 170 ms
65,408 KB
testcase_04 AC 96 ms
65,280 KB
testcase_05 AC 86 ms
64,768 KB
testcase_06 AC 105 ms
65,152 KB
testcase_07 AC 112 ms
63,616 KB
testcase_08 AC 100 ms
65,664 KB
testcase_09 AC 94 ms
65,536 KB
testcase_10 AC 171 ms
65,536 KB
testcase_11 AC 134 ms
65,664 KB
testcase_12 AC 122 ms
65,280 KB
testcase_13 AC 86 ms
64,384 KB
testcase_14 AC 168 ms
65,792 KB
testcase_15 AC 119 ms
65,408 KB
testcase_16 AC 101 ms
63,744 KB
testcase_17 AC 126 ms
65,536 KB
testcase_18 AC 171 ms
65,792 KB
testcase_19 AC 84 ms
64,512 KB
testcase_20 AC 53 ms
60,800 KB
testcase_21 AC 182 ms
65,920 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