結果

問題 No.615 集合に分けよう
ユーザー flippergoflippergo
提出日時 2024-12-09 22:39:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 333 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-12-09 22:39:04
合計ジャッジ時間 3,783 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 35 ms
51,456 KB
testcase_03 AC 36 ms
51,712 KB
testcase_04 AC 35 ms
51,840 KB
testcase_05 AC 35 ms
51,840 KB
testcase_06 WA -
testcase_07 AC 42 ms
51,968 KB
testcase_08 AC 39 ms
52,224 KB
testcase_09 AC 37 ms
51,584 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 36 ms
51,456 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 43 ms
60,800 KB
testcase_16 AC 59 ms
71,936 KB
testcase_17 AC 59 ms
71,680 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 37 ms
52,224 KB
testcase_26 AC 42 ms
51,712 KB
testcase_27 AC 47 ms
67,584 KB
testcase_28 AC 45 ms
67,584 KB
testcase_29 AC 49 ms
71,424 KB
testcase_30 AC 55 ms
73,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
A = sorted(list(map(int,input().split())))
ans = sum(A)
if K==1:
    ans = A[N-1]-A[0]
elif K==2:
    for i in range(1,N):
        cnt = A[i-1]-A[0]+A[N-1]-A[i]
        ans = min(ans,cnt)
else:
    for i in range(1,N-K+2):
        cnt = A[i-1]-A[0]+A[N-1]-A[i+K-2]
        ans = min(ans,cnt)
print(ans)
0