結果

問題 No.99 ジャンピング駒
ユーザー togaerrortogaerror
提出日時 2015-04-06 22:11:06
言語 Perl
(5.38.2)
結果
AC  
実行時間 47 ms / 5,000 ms
コード長 353 bytes
コンパイル時間 34 ms
コンパイル使用メモリ 6,688 KB
実行使用メモリ 17,664 KB
最終ジャッジ日時 2024-07-04 03:28:17
合計ジャッジ時間 1,104 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
17,536 KB
testcase_01 AC 44 ms
17,664 KB
testcase_02 AC 47 ms
17,664 KB
testcase_03 AC 46 ms
17,664 KB
testcase_04 AC 42 ms
17,664 KB
testcase_05 AC 45 ms
17,536 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

#!/usr/bin/perl

use strict;
use warnings;

my $n = <>;
my $str = <>;
chomp $str;
my @array = split / /, $str;
my $a = 0;
my $b = 0;

for(my $i = 0; $i < $n; $i++) {
		if($array[$i] % 2 == 0) {
			$a++;
		} else {
			$b++;
		}
}

if($a == $b) {
	print "0\n";
} elsif($a < $b) {
	print $b - $a;
	print "\n";
} else {
	print $a - $b;
	print "\n";
}

exit;
0