結果

問題 No.99 ジャンピング駒
ユーザー steek79steek79
提出日時 2015-10-14 23:49:04
言語 Python2
(2.7.18)
結果
AC  
実行時間 75 ms / 5,000 ms
コード長 178 bytes
コンパイル時間 113 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 15,056 KB
最終ジャッジ日時 2024-07-21 15:58:17
合計ジャッジ時間 1,077 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

N = input()
locs = map(int, raw_input().split())
odd_even = [i%2 for i in locs]

sum_odd = odd_even.count(1)
sum_even = odd_even.count(0)

ans = abs(sum_odd - sum_even)
print ans
0