結果

問題 No.615 集合に分けよう
ユーザー motimoti
提出日時 2018-05-30 02:06:09
言語 Perl
(5.38.2)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 376 bytes
コンパイル時間 34 ms
コンパイル使用メモリ 5,120 KB
実行使用メモリ 13,780 KB
最終ジャッジ日時 2024-06-30 08:09:32
合計ジャッジ時間 2,475 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,376 KB
testcase_01 AC 4 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 4 ms
5,376 KB
testcase_06 AC 4 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 4 ms
5,376 KB
testcase_14 AC 4 ms
5,632 KB
testcase_15 AC 15 ms
7,040 KB
testcase_16 AC 69 ms
13,776 KB
testcase_17 AC 73 ms
13,772 KB
testcase_18 AC 73 ms
13,776 KB
testcase_19 AC 81 ms
13,772 KB
testcase_20 AC 72 ms
13,776 KB
testcase_21 AC 71 ms
13,780 KB
testcase_22 AC 69 ms
13,776 KB
testcase_23 AC 56 ms
13,304 KB
testcase_24 AC 73 ms
13,644 KB
testcase_25 AC 3 ms
5,376 KB
testcase_26 AC 3 ms
5,376 KB
testcase_27 AC 34 ms
12,928 KB
testcase_28 AC 35 ms
12,800 KB
testcase_29 AC 37 ms
13,440 KB
testcase_30 AC 37 ms
13,568 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

#!/usr/bin/env perl

my ($n, $k) = split / /, <>; chomp $k;
my @array = split / /, <>;
chomp $array[$n - 1];

@array = sort { $a <=> $b } @array;
my @narray;
for (my $i = 0; $i < $n - 1; $i++) {
  push @narray, $array[$i + 1] - $array[$i];
}

@narray = sort { $a <=> $b } @narray;
my $res = 0;
for (my $i = 0; $i < $n - $k; $i++) {
  $res += $narray[$i];
}

print $res, "\n";
0