結果

問題 No.1391 ±1 Abs Sum
ユーザー titiatitia
提出日時 2021-02-12 21:54:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 351 bytes
コンパイル時間 122 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,656 KB
最終ジャッジ日時 2024-07-19 21:10:08
合計ジャッジ時間 6,405 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 28 ms
10,496 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 WA -
testcase_06 AC 28 ms
10,624 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 145 ms
23,128 KB
testcase_15 AC 148 ms
23,584 KB
testcase_16 AC 180 ms
26,924 KB
testcase_17 AC 163 ms
24,996 KB
testcase_18 AC 204 ms
30,188 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 227 ms
32,536 KB
testcase_32 AC 127 ms
21,612 KB
testcase_33 AC 146 ms
23,196 KB
testcase_34 WA -
testcase_35 AC 27 ms
10,496 KB
testcase_36 AC 208 ms
32,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,K=map(int,input().split())
A=list(map(int,input().split()))

ANS0=0
MIN=min(A)

for i in range(K):
    ANS0+=abs(MIN-A[i])
for i in range(K,N):
    ANS0-=abs(MIN-A[i])

ANS1=0
MAX=max(A)
A.reverse()
for i in range(K):
    ANS1+=abs(MAX-A[i])
for i in range(K,N):
    ANS1-=abs(MAX-A[i])

print(min(ANS0,ANS1))
0