結果

問題 No.99 ジャンピング駒
ユーザー ABKZABKZ
提出日時 2022-02-27 23:25:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 5,000 ms
コード長 139 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 89,856 KB
最終ジャッジ日時 2024-07-06 00:44:16
合計ジャッジ時間 1,246 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
86,784 KB
testcase_01 AC 68 ms
87,424 KB
testcase_02 AC 69 ms
87,040 KB
testcase_03 AC 69 ms
89,216 KB
testcase_04 AC 64 ms
82,688 KB
testcase_05 AC 73 ms
89,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

odd_x = [x for x in x_pos if x % 2 != 0]
print(abs(len(x_pos) - 2 * len(odd_x)))
0