結果

問題 No.1077 Noelちゃんと星々4
ユーザー brthyyjpbrthyyjp
提出日時 2020-06-12 21:39:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 237 ms / 2,000 ms
コード長 464 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 79,324 KB
最終ジャッジ日時 2024-06-24 04:37:33
合計ジャッジ時間 3,999 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
61,856 KB
testcase_01 AC 50 ms
63,968 KB
testcase_02 AC 176 ms
78,856 KB
testcase_03 AC 213 ms
78,072 KB
testcase_04 AC 105 ms
77,140 KB
testcase_05 AC 93 ms
75,856 KB
testcase_06 AC 123 ms
77,524 KB
testcase_07 AC 124 ms
77,408 KB
testcase_08 AC 112 ms
77,292 KB
testcase_09 AC 106 ms
77,244 KB
testcase_10 AC 212 ms
78,240 KB
testcase_11 AC 160 ms
78,204 KB
testcase_12 AC 145 ms
78,088 KB
testcase_13 AC 92 ms
75,872 KB
testcase_14 AC 213 ms
79,324 KB
testcase_15 AC 142 ms
78,184 KB
testcase_16 AC 111 ms
77,180 KB
testcase_17 AC 147 ms
78,220 KB
testcase_18 AC 217 ms
78,148 KB
testcase_19 AC 90 ms
75,912 KB
testcase_20 AC 48 ms
61,536 KB
testcase_21 AC 237 ms
78,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline

import copy

def main():

    N = int(input())
    Y = list(map(int, input().split()))

    n = 10**4+1

    dp = [0]*n
    for i in range(N):
        temp = [0]*n
        cum = [10**18]*(n+1)
        for j in range(n):
            cum[j+1] = min(cum[j], dp[j])
        for j in range(n):
            temp[j] = cum[j+1]+abs(j-Y[i])
        dp = copy.copy(temp)
    print(min(dp))

if __name__ =='__main__':
    main()
0