結果

問題 No.1077 Noelちゃんと星々4
ユーザー しのしの
提出日時 2020-05-05 22:29:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 275 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 66,944 KB
最終ジャッジ日時 2024-06-27 06:04:13
合計ジャッジ時間 3,349 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
60,928 KB
testcase_01 AC 49 ms
61,952 KB
testcase_02 AC 127 ms
66,688 KB
testcase_03 AC 135 ms
66,688 KB
testcase_04 AC 78 ms
66,304 KB
testcase_05 AC 72 ms
65,664 KB
testcase_06 AC 87 ms
66,560 KB
testcase_07 AC 97 ms
65,280 KB
testcase_08 AC 83 ms
66,304 KB
testcase_09 AC 76 ms
66,560 KB
testcase_10 AC 133 ms
66,944 KB
testcase_11 AC 105 ms
66,688 KB
testcase_12 AC 96 ms
66,688 KB
testcase_13 AC 71 ms
65,280 KB
testcase_14 AC 130 ms
66,688 KB
testcase_15 AC 95 ms
66,944 KB
testcase_16 AC 88 ms
64,768 KB
testcase_17 AC 102 ms
66,560 KB
testcase_18 AC 132 ms
66,304 KB
testcase_19 AC 68 ms
65,408 KB
testcase_20 AC 48 ms
62,208 KB
testcase_21 AC 139 ms
66,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
ys = map(int, input().split())

MaxY = 10005
dp = [0 for _ in range(MaxY)]

for y in ys:
  for j in range(MaxY):
    dp[j] += abs(j - y)
  for j in range(MaxY-1):
    dp[j+1] = min(dp[j], dp[j+1])

res = 10000007
for d in dp:
  res = min(res, d)

print(res)
0