結果

問題 No.615 集合に分けよう
ユーザー FromBooskaFromBooska
提出日時 2023-02-25 21:23:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 333 bytes
コンパイル時間 816 ms
コンパイル使用メモリ 81,908 KB
実行使用メモリ 77,992 KB
最終ジャッジ日時 2024-09-13 16:27:10
合計ジャッジ時間 3,580 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,024 KB
testcase_01 AC 37 ms
52,440 KB
testcase_02 AC 37 ms
53,056 KB
testcase_03 AC 37 ms
53,012 KB
testcase_04 AC 38 ms
52,552 KB
testcase_05 AC 38 ms
52,608 KB
testcase_06 AC 37 ms
52,432 KB
testcase_07 AC 37 ms
53,172 KB
testcase_08 AC 38 ms
52,492 KB
testcase_09 AC 38 ms
53,812 KB
testcase_10 AC 38 ms
52,732 KB
testcase_11 AC 37 ms
52,196 KB
testcase_12 AC 37 ms
53,900 KB
testcase_13 AC 38 ms
52,132 KB
testcase_14 AC 39 ms
53,272 KB
testcase_15 AC 46 ms
63,020 KB
testcase_16 AC 72 ms
77,120 KB
testcase_17 AC 73 ms
77,320 KB
testcase_18 AC 73 ms
77,976 KB
testcase_19 AC 71 ms
77,992 KB
testcase_20 AC 73 ms
76,920 KB
testcase_21 AC 74 ms
77,316 KB
testcase_22 AC 72 ms
76,444 KB
testcase_23 AC 59 ms
75,240 KB
testcase_24 AC 71 ms
76,368 KB
testcase_25 AC 38 ms
53,004 KB
testcase_26 AC 38 ms
52,400 KB
testcase_27 AC 52 ms
73,172 KB
testcase_28 AC 52 ms
71,952 KB
testcase_29 AC 57 ms
76,312 KB
testcase_30 AC 57 ms
76,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 数の差の問題
# 数の差をリストアウト、ソート
# その最大の差K-1個をスキップできる

N, K = map(int, input().split())
A = list(map(int, input().split()))
A.sort()
diff = []
for i in range(N-1):
    diff.append(A[i+1]-A[i])
diff.sort(reverse = True)
    
#print(diff)

ans = sum(diff[K-1:])
print(ans)
0