結果

問題 No.99 ジャンピング駒
ユーザー HIROPON87069639HIROPON87069639
提出日時 2016-02-27 12:55:22
言語 Python2
(2.7.18)
結果
AC  
実行時間 84 ms / 5,000 ms
コード長 200 bytes
コンパイル時間 67 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 15,056 KB
最終ジャッジ日時 2024-09-24 11:33:04
合計ジャッジ時間 1,561 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

# -*- coding: utf-8 -*-
N = input()
A = map(int, raw_input().split())
cnt1 = 0
cnt2 = 0
for i in range(0,N):
    if A[i] % 2 == 1:
        cnt1 += 1
    else:
        cnt2 += 1
print abs(cnt1 - cnt2)
0