結果

問題 No.99 ジャンピング駒
ユーザー KazunKazun
提出日時 2020-09-05 20:18:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 5,000 ms
コード長 146 bytes
コンパイル時間 408 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 84,096 KB
最終ジャッジ日時 2024-11-29 06:02:30
合計ジャッジ時間 1,613 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
84,032 KB
testcase_01 AC 72 ms
84,096 KB
testcase_02 AC 69 ms
83,840 KB
testcase_03 AC 71 ms
83,968 KB
testcase_04 AC 69 ms
83,200 KB
testcase_05 AC 70 ms
83,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
X=list(map(int,input().split()))

Odd=Even=0
for x in X:
    if x%2:
        Odd+=1
    else:
        Even+=1

print(abs(Odd-Even))
0