結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
15,744 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 33 ms
10,368 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 45 ms
12,032 KB
testcase_08 AC 13 ms
7,040 KB
testcase_09 AC 29 ms
9,600 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 64 ms
14,976 KB
testcase_13 WA -
testcase_14 AC 9 ms
6,272 KB
testcase_15 WA -
testcase_16 AC 90 ms
18,688 KB
testcase_17 AC 65 ms
15,872 KB
testcase_18 AC 25 ms
9,088 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 = int(($ys[$lpos] + $ys[$lpos + 1]) / 2);
}
my $ans = 0;
for my $e (@ys) {
  $ans += abs($e - $target);
}
print "$ans\n";
0