結果

問題 No.1077 Noelちゃんと星々4
ユーザー paruf4paruf4
提出日時 2020-06-13 13:25:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 244 ms / 2,000 ms
コード長 254 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 154,000 KB
最終ジャッジ日時 2024-06-25 01:59:10
合計ジャッジ時間 4,093 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,236 KB
testcase_01 AC 38 ms
53,520 KB
testcase_02 AC 184 ms
115,836 KB
testcase_03 AC 234 ms
138,620 KB
testcase_04 AC 111 ms
93,416 KB
testcase_05 AC 98 ms
90,632 KB
testcase_06 AC 112 ms
93,320 KB
testcase_07 AC 134 ms
92,932 KB
testcase_08 AC 110 ms
93,152 KB
testcase_09 AC 105 ms
93,164 KB
testcase_10 AC 228 ms
138,976 KB
testcase_11 AC 163 ms
116,472 KB
testcase_12 AC 146 ms
112,592 KB
testcase_13 AC 95 ms
89,944 KB
testcase_14 AC 219 ms
138,888 KB
testcase_15 AC 144 ms
111,516 KB
testcase_16 AC 107 ms
92,932 KB
testcase_17 AC 158 ms
116,052 KB
testcase_18 AC 217 ms
138,752 KB
testcase_19 AC 94 ms
89,340 KB
testcase_20 AC 40 ms
59,036 KB
testcase_21 AC 244 ms
154,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

mx=max(y)
inf=10**18
dp=[[inf]*(mx+1) for i in range(n+1)]
dp[0][0]=0
for i in range(1,n+1):
  mn=10**18
  for j in range(mx+1):
    mn=min(mn,dp[i-1][j])
    dp[i][j]=mn+abs(y[i-1]-j)
print(min(dp[-1]))

0