結果

問題 No.609 Noelちゃんと星々
ユーザー motimoti
提出日時 2018-05-24 00:31:59
言語 Perl
(5.38.2)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 318 bytes
コンパイル時間 64 ms
コンパイル使用メモリ 6,812 KB
実行使用メモリ 19,200 KB
最終ジャッジ日時 2024-06-28 16:36:25
合計ジャッジ時間 2,536 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
15,872 KB
testcase_01 AC 36 ms
10,752 KB
testcase_02 AC 25 ms
9,088 KB
testcase_03 AC 33 ms
10,240 KB
testcase_04 AC 19 ms
7,936 KB
testcase_05 AC 90 ms
18,304 KB
testcase_06 AC 73 ms
16,384 KB
testcase_07 AC 45 ms
12,032 KB
testcase_08 AC 13 ms
6,940 KB
testcase_09 AC 28 ms
9,600 KB
testcase_10 AC 56 ms
13,696 KB
testcase_11 AC 53 ms
13,056 KB
testcase_12 AC 64 ms
14,976 KB
testcase_13 AC 15 ms
7,424 KB
testcase_14 AC 10 ms
6,400 KB
testcase_15 AC 82 ms
16,896 KB
testcase_16 AC 90 ms
18,816 KB
testcase_17 AC 69 ms
15,872 KB
testcase_18 AC 25 ms
9,088 KB
testcase_19 AC 76 ms
16,640 KB
testcase_20 AC 93 ms
19,200 KB
testcase_21 AC 94 ms
19,200 KB
testcase_22 AC 94 ms
19,200 KB
testcase_23 AC 93 ms
19,200 KB
testcase_24 AC 95 ms
19,072 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

#!/usr/bin/env perl

use strict;
use warnings;

my $n = <>;
my @ys = split / /, <>;
@ys = sort { $a <=> $b } @ys;
my $target;
if ($n % 2) {
  $target = $ys[$n / 2];
} else {
  my $p = int($n / 2);
  $target = ($ys[$p - 1] + $ys[$p]) / 2;
}
my $ans = 0;
for my $e (@ys) {
  $ans += abs($e - $target);
}
print "$ans\n";
0