結果

問題 No.178 美しいWhitespace (1)
ユーザー togaerrortogaerror
提出日時 2015-04-11 18:01:56
言語 Perl
(5.38.2)
結果
AC  
実行時間 317 ms / 2,000 ms
コード長 513 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 13,952 KB
最終ジャッジ日時 2024-07-04 13:38:51
合計ジャッジ時間 7,400 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
12,800 KB
testcase_01 AC 55 ms
12,800 KB
testcase_02 AC 54 ms
12,800 KB
testcase_03 AC 55 ms
12,800 KB
testcase_04 AC 315 ms
13,824 KB
testcase_05 AC 316 ms
13,824 KB
testcase_06 AC 315 ms
13,824 KB
testcase_07 AC 188 ms
13,696 KB
testcase_08 AC 313 ms
13,824 KB
testcase_09 AC 314 ms
13,952 KB
testcase_10 AC 315 ms
13,696 KB
testcase_11 AC 187 ms
13,696 KB
testcase_12 AC 186 ms
13,824 KB
testcase_13 AC 314 ms
13,696 KB
testcase_14 AC 315 ms
13,952 KB
testcase_15 AC 312 ms
13,824 KB
testcase_16 AC 317 ms
13,696 KB
testcase_17 AC 314 ms
13,824 KB
testcase_18 AC 189 ms
13,696 KB
testcase_19 AC 316 ms
13,696 KB
testcase_20 AC 189 ms
13,696 KB
testcase_21 AC 316 ms
13,824 KB
testcase_22 AC 280 ms
13,440 KB
testcase_23 AC 300 ms
13,440 KB
testcase_24 AC 303 ms
13,312 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

#!/usr/bin/perl

use strict;
use warnings;
use bigint;

my $n = <>;
my @arraya;
my @arrayb;
my @count;
for(my $i = 0; $i < $n; $i++) {
	($arraya[$i], $arrayb[$i] )= split / /, <>;
	$count[$i] = $arraya[$i] + 4 * $arrayb[$i];
}

@count = reverse sort {$a <=> $b} @count;
my $ans = 0;

for(my $i = 1; $i < $n; $i++) {
	if(($count[0] - $count[$i]) % 2 eq 0) {
		my $c = $count[0] - $count[$i];
		$ans += $c / 2;
	} else {
		$ans = -1;
		last;
	}
}

if($ans  < 0) {
	print "$ans\n";
} else {
	print "$ans\n";
}

exit;
0