結果

問題 No.1077 Noelちゃんと星々4
ユーザー ytftytft
提出日時 2022-03-22 00:54:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 281 ms / 2,000 ms
コード長 342 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 81,788 KB
実行使用メモリ 154,000 KB
最終ジャッジ日時 2024-10-09 15:49:09
合計ジャッジ時間 4,742 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
60,624 KB
testcase_01 AC 48 ms
62,084 KB
testcase_02 AC 216 ms
113,804 KB
testcase_03 AC 251 ms
136,516 KB
testcase_04 AC 113 ms
91,436 KB
testcase_05 AC 104 ms
91,140 KB
testcase_06 AC 126 ms
91,384 KB
testcase_07 AC 135 ms
91,296 KB
testcase_08 AC 117 ms
92,068 KB
testcase_09 AC 112 ms
91,452 KB
testcase_10 AC 250 ms
136,484 KB
testcase_11 AC 183 ms
114,224 KB
testcase_12 AC 164 ms
113,060 KB
testcase_13 AC 101 ms
90,448 KB
testcase_14 AC 252 ms
136,512 KB
testcase_15 AC 164 ms
111,632 KB
testcase_16 AC 123 ms
92,132 KB
testcase_17 AC 173 ms
114,144 KB
testcase_18 AC 249 ms
136,716 KB
testcase_19 AC 101 ms
89,412 KB
testcase_20 AC 44 ms
59,944 KB
testcase_21 AC 281 ms
154,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda:sys.stdin.readline().rstrip()
N=int(input())
Y=list(map(int,input().split()))
dp=[[0 for i in range(10001)] for j in range(N)]
for i in range(10001):
	dp[0][i]=max(0,Y[0]-i)
for i in range(1,N):
	dp[i][0]=dp[i-1][0]+Y[i]
	for j in range(1,10001):
		dp[i][j]=min(dp[i][j-1],abs(Y[i]-j)+dp[i-1][j])
print(dp[N-1][10000])
0