結果

問題 No.1077 Noelちゃんと星々4
ユーザー H20H20
提出日時 2021-12-27 10:33:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 220 ms / 2,000 ms
コード長 278 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,084 KB
実行使用メモリ 77,860 KB
最終ジャッジ日時 2024-09-25 04:06:45
合計ジャッジ時間 3,908 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,772 KB
testcase_01 AC 36 ms
52,092 KB
testcase_02 AC 180 ms
77,024 KB
testcase_03 AC 202 ms
77,288 KB
testcase_04 AC 105 ms
76,672 KB
testcase_05 AC 96 ms
75,284 KB
testcase_06 AC 117 ms
76,628 KB
testcase_07 AC 125 ms
76,520 KB
testcase_08 AC 107 ms
76,800 KB
testcase_09 AC 102 ms
76,708 KB
testcase_10 AC 202 ms
77,468 KB
testcase_11 AC 156 ms
76,712 KB
testcase_12 AC 135 ms
76,792 KB
testcase_13 AC 92 ms
75,580 KB
testcase_14 AC 198 ms
77,344 KB
testcase_15 AC 137 ms
76,452 KB
testcase_16 AC 108 ms
76,048 KB
testcase_17 AC 142 ms
76,984 KB
testcase_18 AC 203 ms
76,904 KB
testcase_19 AC 90 ms
75,640 KB
testcase_20 AC 42 ms
59,588 KB
testcase_21 AC 220 ms
77,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
Y = list(map(int,input().split()))
my = max(Y)+1
DP = [0]*(my)
for y in Y:
    NDP1 = [0]*my
    for i in range(my):
        NDP1[i] = DP[i]+abs(y-i)
    NDP = [10**7]*my
    for i in range(my):
        NDP[i] = min(NDP[i-1],NDP1[i])
    DP = NDP
print(min(DP))
0