結果

問題 No.1077 Noelちゃんと星々4
ユーザー NoneNone
提出日時 2021-02-25 23:51:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 202 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 76,224 KB
最終ジャッジ日時 2024-10-01 14:51:21
合計ジャッジ時間 3,209 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,616 KB
testcase_01 AC 35 ms
53,532 KB
testcase_02 AC 135 ms
75,892 KB
testcase_03 AC 134 ms
76,072 KB
testcase_04 AC 84 ms
76,044 KB
testcase_05 AC 75 ms
75,192 KB
testcase_06 AC 93 ms
75,620 KB
testcase_07 AC 104 ms
75,788 KB
testcase_08 AC 82 ms
75,836 KB
testcase_09 AC 79 ms
75,760 KB
testcase_10 AC 131 ms
75,960 KB
testcase_11 AC 106 ms
75,700 KB
testcase_12 AC 98 ms
76,008 KB
testcase_13 AC 75 ms
75,172 KB
testcase_14 AC 135 ms
76,224 KB
testcase_15 AC 103 ms
75,888 KB
testcase_16 AC 90 ms
75,920 KB
testcase_17 AC 108 ms
75,708 KB
testcase_18 AC 136 ms
75,752 KB
testcase_19 AC 76 ms
75,400 KB
testcase_20 AC 45 ms
58,044 KB
testcase_21 AC 142 ms
75,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
Y=list(map(int, input().split()))
dp=[0]*(max(Y)+1)
for i in range(N):
    m=float("inf")
    for l in range(max(Y)+1):
        m=min(dp[l],m)
        dp[l]=m+abs(Y[i]-l)

print(min(dp))
0