結果

問題 No.1077 Noelちゃんと星々4
ユーザー しのしの
提出日時 2020-05-05 22:21:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 570 ms / 2,000 ms
コード長 274 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 43,912 KB
最終ジャッジ日時 2024-06-27 05:48:37
合計ジャッジ時間 14,611 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 505 ms
43,512 KB
testcase_01 AC 500 ms
43,892 KB
testcase_02 AC 556 ms
43,504 KB
testcase_03 AC 565 ms
43,776 KB
testcase_04 AC 521 ms
43,532 KB
testcase_05 AC 515 ms
43,504 KB
testcase_06 AC 530 ms
43,576 KB
testcase_07 AC 536 ms
43,520 KB
testcase_08 AC 528 ms
43,528 KB
testcase_09 AC 524 ms
43,532 KB
testcase_10 AC 570 ms
43,524 KB
testcase_11 AC 549 ms
43,528 KB
testcase_12 AC 542 ms
43,776 KB
testcase_13 AC 520 ms
43,520 KB
testcase_14 AC 564 ms
43,644 KB
testcase_15 AC 540 ms
43,524 KB
testcase_16 AC 529 ms
43,524 KB
testcase_17 AC 545 ms
43,652 KB
testcase_18 AC 570 ms
43,524 KB
testcase_19 AC 515 ms
43,912 KB
testcase_20 AC 502 ms
43,520 KB
testcase_21 AC 569 ms
43,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import numpy as np

read = sys.stdin.buffer.read

n, *y = map(int, read().split())

MaxY = 10005
dp = np.zeros(MaxY, dtype=np.int32)
ix = np.arange(MaxY)

for i in range(n):
  dp += abs(ix - y[i])
  np.minimum.accumulate(dp, out=dp)

print(np.minimum.reduce(dp))
0