結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
14,864 KB
testcase_01 AC 78 ms
14,868 KB
testcase_02 AC 79 ms
14,736 KB
testcase_03 AC 78 ms
14,868 KB
testcase_04 AC 81 ms
14,992 KB
testcase_05 AC 78 ms
14,996 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