結果

問題 No.1077 Noelちゃんと星々4
ユーザー tktk_snsntktk_snsn
提出日時 2020-06-12 22:26:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 393 ms / 2,000 ms
コード長 249 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 90,424 KB
最終ジャッジ日時 2024-06-24 05:18:38
合計ジャッジ時間 5,681 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
69,844 KB
testcase_01 AC 55 ms
75,732 KB
testcase_02 AC 303 ms
85,452 KB
testcase_03 AC 370 ms
88,172 KB
testcase_04 AC 151 ms
79,340 KB
testcase_05 AC 123 ms
78,364 KB
testcase_06 AC 176 ms
80,296 KB
testcase_07 AC 198 ms
81,264 KB
testcase_08 AC 155 ms
79,356 KB
testcase_09 AC 143 ms
79,024 KB
testcase_10 AC 354 ms
88,564 KB
testcase_11 AC 253 ms
84,024 KB
testcase_12 AC 214 ms
82,064 KB
testcase_13 AC 116 ms
78,116 KB
testcase_14 AC 355 ms
88,244 KB
testcase_15 AC 211 ms
81,808 KB
testcase_16 AC 164 ms
79,648 KB
testcase_17 AC 230 ms
82,872 KB
testcase_18 AC 353 ms
88,960 KB
testcase_19 AC 112 ms
78,148 KB
testcase_20 AC 45 ms
61,872 KB
testcase_21 AC 393 ms
90,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate
N = int(input())
A = list(map(int, input().split()))
U = 10 ** 4 + 10

dp = [i for i in range(U)]
for a in A:
    dp = list(accumulate(dp, func=min))
    dp = [x + abs(i - a) for i, x in enumerate(dp)]
print(min(dp))
0