結果

問題 No.1077 Noelちゃんと星々4
ユーザー kohei2019kohei2019
提出日時 2022-07-25 22:52:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 177 ms / 2,000 ms
コード長 274 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,440 KB
最終ジャッジ日時 2024-07-08 01:38:55
合計ジャッジ時間 3,392 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
59,008 KB
testcase_01 AC 45 ms
60,800 KB
testcase_02 AC 146 ms
77,184 KB
testcase_03 AC 154 ms
77,056 KB
testcase_04 AC 88 ms
76,160 KB
testcase_05 AC 80 ms
76,032 KB
testcase_06 AC 94 ms
76,288 KB
testcase_07 AC 110 ms
76,672 KB
testcase_08 AC 89 ms
76,160 KB
testcase_09 AC 90 ms
76,032 KB
testcase_10 AC 152 ms
77,312 KB
testcase_11 AC 121 ms
76,800 KB
testcase_12 AC 109 ms
77,056 KB
testcase_13 AC 85 ms
75,136 KB
testcase_14 AC 165 ms
77,440 KB
testcase_15 AC 106 ms
76,800 KB
testcase_16 AC 92 ms
76,160 KB
testcase_17 AC 110 ms
76,800 KB
testcase_18 AC 177 ms
77,184 KB
testcase_19 AC 81 ms
75,520 KB
testcase_20 AC 44 ms
59,264 KB
testcase_21 AC 162 ms
77,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
lsY = list(map(int,input().split()))
dp = [0]*(10**4+1)
inf = float('INF')
for i in range(N):
    y = lsY[i]
    dp2 = [0]*(10**4+1)
    m = inf
    for j in range(10**4+1):
        m = min(m,dp[j])
        dp2[j] = m + abs(j-y)
    dp = dp2
print(min(dp))
0