結果

問題 No.615 集合に分けよう
ユーザー motimoti
提出日時 2018-05-30 02:05:45
言語 Perl
(5.38.2)
結果
TLE  
実行時間 -
コード長 415 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 28,076 KB
最終ジャッジ日時 2024-06-30 08:09:51
合計ジャッジ時間 8,549 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
18,176 KB
testcase_01 AC 52 ms
12,800 KB
testcase_02 AC 52 ms
12,800 KB
testcase_03 AC 53 ms
12,800 KB
testcase_04 AC 54 ms
12,672 KB
testcase_05 AC 54 ms
12,800 KB
testcase_06 AC 55 ms
12,800 KB
testcase_07 AC 60 ms
12,800 KB
testcase_08 AC 60 ms
12,800 KB
testcase_09 AC 60 ms
12,928 KB
testcase_10 AC 60 ms
12,928 KB
testcase_11 AC 62 ms
12,800 KB
testcase_12 AC 56 ms
12,800 KB
testcase_13 AC 93 ms
12,800 KB
testcase_14 AC 137 ms
12,928 KB
testcase_15 AC 872 ms
14,464 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

#!/usr/bin/env perl

use strict;
use warnings;
use bigint;

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