結果

問題 No.1077 Noelちゃんと星々4
ユーザー stnkienstnkien
提出日時 2020-06-13 02:17:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 259 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 64,100 KB
最終ジャッジ日時 2024-06-24 06:17:29
合計ジャッジ時間 2,683 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,416 KB
testcase_01 AC 39 ms
53,284 KB
testcase_02 AC 90 ms
62,820 KB
testcase_03 AC 118 ms
63,588 KB
testcase_04 AC 68 ms
63,164 KB
testcase_05 AC 63 ms
62,064 KB
testcase_06 AC 77 ms
63,712 KB
testcase_07 AC 72 ms
62,084 KB
testcase_08 AC 71 ms
62,964 KB
testcase_09 AC 69 ms
63,236 KB
testcase_10 AC 113 ms
63,572 KB
testcase_11 AC 93 ms
62,840 KB
testcase_12 AC 84 ms
63,212 KB
testcase_13 AC 63 ms
61,980 KB
testcase_14 AC 110 ms
63,156 KB
testcase_15 AC 82 ms
63,024 KB
testcase_16 AC 67 ms
62,012 KB
testcase_17 AC 85 ms
63,400 KB
testcase_18 AC 112 ms
64,100 KB
testcase_19 AC 63 ms
63,472 KB
testcase_20 AC 41 ms
58,728 KB
testcase_21 AC 122 ms
63,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

INF = 1 << 60
maxY = max(Y)
dp = [0]*(maxY+1)

for y in Y:
    minx = INF
    for j in range(maxY+1):
        x = dp[j] + abs(y-j)
        if x < minx:
            minx = x
        dp[j] = minx

print(dp[-1])
0