結果

問題 No.99 ジャンピング駒
ユーザー togatogatogatoga
提出日時 2015-09-02 23:28:02
言語 Python2
(2.7.18)
結果
AC  
実行時間 74 ms / 5,000 ms
コード長 164 bytes
コンパイル時間 673 ms
コンパイル使用メモリ 6,784 KB
実行使用メモリ 15,052 KB
最終ジャッジ日時 2024-07-18 21:48:26
合計ジャッジ時間 1,680 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

N = input()
X = map(int, raw_input().split())
even = 0;odd = 0;
for x in X:
    if (x % 2 == 0):
        even += 1
    else:
        odd += 1
print abs(even - odd)
0