結果

問題 No.1077 Noelちゃんと星々4
ユーザー ああいいああいい
提出日時 2022-02-23 14:42:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 258 ms / 2,000 ms
コード長 371 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 139,068 KB
最終ジャッジ日時 2024-07-01 14:22:52
合計ジャッジ時間 4,465 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
59,520 KB
testcase_01 AC 50 ms
60,544 KB
testcase_02 AC 200 ms
115,968 KB
testcase_03 AC 248 ms
138,632 KB
testcase_04 AC 119 ms
93,048 KB
testcase_05 AC 109 ms
90,880 KB
testcase_06 AC 126 ms
93,056 KB
testcase_07 AC 144 ms
92,928 KB
testcase_08 AC 121 ms
92,916 KB
testcase_09 AC 117 ms
93,056 KB
testcase_10 AC 241 ms
139,068 KB
testcase_11 AC 179 ms
115,968 KB
testcase_12 AC 163 ms
112,896 KB
testcase_13 AC 107 ms
89,856 KB
testcase_14 AC 243 ms
138,880 KB
testcase_15 AC 160 ms
111,548 KB
testcase_16 AC 118 ms
92,800 KB
testcase_17 AC 171 ms
116,224 KB
testcase_18 AC 244 ms
138,624 KB
testcase_19 AC 105 ms
89,472 KB
testcase_20 AC 40 ms
51,712 KB
testcase_21 AC 258 ms
139,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
Y = list(map(int,input().split()))
import sys
if N == 1:
    print(0)
    exit()

C = 10 ** 4
inf = 10 ** 10
dp = [[inf] * (C+1) for _ in range(N)]
for i in range(C+1):
    dp[0][i] = abs(i-Y[0])
for i in range(N-1):
    _min = inf
    for j in range(C+1):
        _min = min(_min,dp[i][j])
        dp[i+1][j] = _min + abs(j - Y[i+1])
print(min(dp[-1]))
0