結果

問題 No.1077 Noelちゃんと星々4
ユーザー TsuboTsubo
提出日時 2020-06-12 22:39:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 259 ms / 2,000 ms
コード長 694 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 81,956 KB
実行使用メモリ 154,120 KB
最終ジャッジ日時 2024-06-24 05:26:25
合計ジャッジ時間 4,330 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
60,652 KB
testcase_01 AC 50 ms
60,444 KB
testcase_02 AC 215 ms
129,380 KB
testcase_03 AC 252 ms
145,264 KB
testcase_04 AC 116 ms
92,548 KB
testcase_05 AC 102 ms
90,564 KB
testcase_06 AC 132 ms
102,804 KB
testcase_07 AC 154 ms
107,152 KB
testcase_08 AC 126 ms
98,444 KB
testcase_09 AC 115 ms
92,692 KB
testcase_10 AC 248 ms
145,296 KB
testcase_11 AC 178 ms
120,664 KB
testcase_12 AC 165 ms
112,728 KB
testcase_13 AC 105 ms
89,944 KB
testcase_14 AC 238 ms
143,276 KB
testcase_15 AC 153 ms
111,232 KB
testcase_16 AC 118 ms
99,320 KB
testcase_17 AC 162 ms
115,828 KB
testcase_18 AC 246 ms
146,484 KB
testcase_19 AC 99 ms
89,348 KB
testcase_20 AC 47 ms
61,032 KB
testcase_21 AC 259 ms
154,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
def main():
    #入力
    readline=stdin.readline
    n=int(readline())
    y=list(map(int,readline().split()))

    dp=[[0]*(10**4+1) for _ in range(n)]
    for i in range(n):
        y_now=y[i]
        if i==0:
            for j in range(10**4+1):
                dp[i][j]=abs(y_now-j)
        else:
            for j in range(10**4+1):
                if j==0:
                    before_min=dp[i-1][j]
                else:
                    before_min=min(before_min,dp[i-1][j])
                dp[i][j]=before_min+abs(y_now-j)

    ans=float("inf")
    for j in range(10**4+1):
        ans=min(ans,dp[n-1][j])

    print(ans)

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