結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
6,016 KB
testcase_01 AC 8 ms
6,016 KB
testcase_02 AC 8 ms
6,144 KB
testcase_03 AC 7 ms
5,888 KB
testcase_04 AC 7 ms
6,016 KB
testcase_05 AC 7 ms
6,144 KB
testcase_06 AC 8 ms
6,016 KB
testcase_07 AC 8 ms
6,016 KB
testcase_08 AC 7 ms
6,016 KB
testcase_09 AC 8 ms
6,144 KB
testcase_10 AC 8 ms
6,144 KB
testcase_11 AC 8 ms
6,016 KB
testcase_12 AC 6 ms
6,016 KB
testcase_13 AC 9 ms
6,144 KB
testcase_14 AC 11 ms
6,272 KB
testcase_15 AC 41 ms
8,960 KB
testcase_16 AC 188 ms
20,908 KB
testcase_17 AC 183 ms
20,908 KB
testcase_18 AC 181 ms
20,780 KB
testcase_19 AC 185 ms
20,680 KB
testcase_20 AC 191 ms
20,780 KB
testcase_21 AC 196 ms
20,908 KB
testcase_22 AC 197 ms
20,904 KB
testcase_23 AC 122 ms
21,476 KB
testcase_24 AC 187 ms
20,824 KB
testcase_25 AC 7 ms
6,016 KB
testcase_26 AC 7 ms
6,016 KB
testcase_27 AC 104 ms
21,432 KB
testcase_28 AC 103 ms
21,568 KB
testcase_29 AC 107 ms
20,796 KB
testcase_30 AC 109 ms
20,920 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