結果

問題 No.615 集合に分けよう
ユーザー tailstails
提出日時 2017-12-15 00:06:54
言語 Perl
(5.38.2)
結果
AC  
実行時間 205 ms / 2,000 ms
コード長 133 bytes
コンパイル時間 656 ms
コンパイル使用メモリ 7,072 KB
実行使用メモリ 21,476 KB
最終ジャッジ日時 2024-12-14 13:45:06
合計ジャッジ時間 3,971 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
6,016 KB
testcase_01 AC 8 ms
6,016 KB
testcase_02 AC 8 ms
6,016 KB
testcase_03 AC 8 ms
6,016 KB
testcase_04 AC 8 ms
5,888 KB
testcase_05 AC 8 ms
6,016 KB
testcase_06 AC 9 ms
6,016 KB
testcase_07 AC 8 ms
6,144 KB
testcase_08 AC 8 ms
6,016 KB
testcase_09 AC 8 ms
6,016 KB
testcase_10 AC 8 ms
6,016 KB
testcase_11 AC 8 ms
6,016 KB
testcase_12 AC 8 ms
6,144 KB
testcase_13 AC 9 ms
6,144 KB
testcase_14 AC 11 ms
6,272 KB
testcase_15 AC 45 ms
9,216 KB
testcase_16 AC 204 ms
20,904 KB
testcase_17 AC 200 ms
20,904 KB
testcase_18 AC 198 ms
20,904 KB
testcase_19 AC 205 ms
20,904 KB
testcase_20 AC 202 ms
20,904 KB
testcase_21 AC 204 ms
20,780 KB
testcase_22 AC 205 ms
20,904 KB
testcase_23 AC 127 ms
21,476 KB
testcase_24 AC 201 ms
20,952 KB
testcase_25 AC 8 ms
6,016 KB
testcase_26 AC 7 ms
6,016 KB
testcase_27 AC 108 ms
21,436 KB
testcase_28 AC 106 ms
21,440 KB
testcase_29 AC 110 ms
20,760 KB
testcase_30 AC 110 ms
20,924 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Name "main::n" used only once: possible typo at Main.pl line 1.
Main.pl syntax OK

ソースコード

diff #

($n,$k)=glob<>;
@a=sort{$a<=>$b}glob<>;
@b=sort{$b<=>$a}map{$a[$_+1]-$a[$_]}0..@a-2;
$s=$a[-1]-$a[0];
$s-=$_ for@b[0..$k-2];
print$s;
0