結果

問題 No.99 ジャンピング駒
ユーザー ohanaohana
提出日時 2023-10-20 11:25:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 5,000 ms
コード長 135 bytes
コンパイル時間 1,036 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 91,776 KB
最終ジャッジ日時 2024-09-20 06:58:32
合計ジャッジ時間 1,671 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
91,520 KB
testcase_01 AC 71 ms
91,264 KB
testcase_02 AC 69 ms
91,776 KB
testcase_03 AC 69 ms
91,776 KB
testcase_04 AC 65 ms
89,984 KB
testcase_05 AC 66 ms
90,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
print(abs(len([a for a in A if a % 2 == 0]) - len([a for a in A if a % 2 == 1])))
0