結果

問題 No.99 ジャンピング駒
ユーザー yumechiyumechi
提出日時 2015-08-20 15:53:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 72 ms / 5,000 ms
コード長 116 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,848 KB
最終ジャッジ日時 2024-07-18 10:54:47
合計ジャッジ時間 1,061 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
21,772 KB
testcase_01 AC 67 ms
21,720 KB
testcase_02 AC 68 ms
21,720 KB
testcase_03 AC 68 ms
21,720 KB
testcase_04 AC 66 ms
21,716 KB
testcase_05 AC 68 ms
21,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
li = list(map(int, input().split()))
el = len([i for i in li if i % 2 == 0])
print(abs(n - 2 * el))
0