結果

問題 No.99 ジャンピング駒
ユーザー akihito0000akihito0000
提出日時 2016-09-24 13:37:10
言語 Python2
(2.7.18)
結果
AC  
実行時間 79 ms / 5,000 ms
コード長 160 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 6,784 KB
実行使用メモリ 14,868 KB
最終ジャッジ日時 2024-11-17 21:37:00
合計ジャッジ時間 1,591 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
14,864 KB
testcase_01 AC 78 ms
14,736 KB
testcase_02 AC 79 ms
14,868 KB
testcase_03 AC 75 ms
14,612 KB
testcase_04 AC 72 ms
14,736 KB
testcase_05 AC 73 ms
14,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(raw_input())
arr = map(int, raw_input().split())
ans = [0,0]

for i in arr:
	if i % 2 == 0:
		ans[0] += 1
	else:
		ans[1] += 1
print max(ans) - min(ans)
0