結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
15,872 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 34 ms
10,240 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 44 ms
12,032 KB
testcase_08 AC 13 ms
6,944 KB
testcase_09 AC 28 ms
9,728 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 66 ms
14,976 KB
testcase_13 WA -
testcase_14 AC 10 ms
6,400 KB
testcase_15 WA -
testcase_16 AC 93 ms
18,816 KB
testcase_17 AC 71 ms
15,872 KB
testcase_18 AC 24 ms
8,960 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 $lpos = int($n / 2);
  $target = ($ys[$lpos] + $ys[$lpos + 1]) / 2;
}
my $ans = 0;
for my $e (@ys) {
  $ans += abs($e - $target);
}
print "$ans\n";
0