結果

問題 No.1077 Noelちゃんと星々4
ユーザー c-yanc-yan
提出日時 2020-06-14 09:20:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 296 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 73,880 KB
最終ジャッジ日時 2024-06-27 00:26:35
合計ジャッジ時間 2,142 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,296 KB
testcase_01 AC 37 ms
53,512 KB
testcase_02 AC 61 ms
70,496 KB
testcase_03 AC 61 ms
73,044 KB
testcase_04 AC 51 ms
64,688 KB
testcase_05 AC 48 ms
62,684 KB
testcase_06 AC 51 ms
64,660 KB
testcase_07 AC 52 ms
66,684 KB
testcase_08 AC 51 ms
64,404 KB
testcase_09 AC 50 ms
62,972 KB
testcase_10 AC 60 ms
72,556 KB
testcase_11 AC 55 ms
67,688 KB
testcase_12 AC 55 ms
66,080 KB
testcase_13 AC 49 ms
62,472 KB
testcase_14 AC 60 ms
73,264 KB
testcase_15 AC 55 ms
67,796 KB
testcase_16 AC 51 ms
64,272 KB
testcase_17 AC 56 ms
67,868 KB
testcase_18 AC 62 ms
73,496 KB
testcase_19 AC 49 ms
62,524 KB
testcase_20 AC 38 ms
51,944 KB
testcase_21 AC 64 ms
73,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

a = sorted(set(Y))
dp = [0] * len(a)

for i in range(len(a)):
    dp[i] = abs(Y[0] - a[i])

for i in range(1, N):
    t = float('inf')
    for j in range(len(a)):
        t = min(t, dp[j])
        dp[j] = t + abs(Y[i] - a[j])

print(min(dp))
0