結果

問題 No.99 ジャンピング駒
ユーザー trineutrontrineutron
提出日時 2020-12-15 15:41:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 81 ms / 5,000 ms
コード長 128 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,720 KB
最終ジャッジ日時 2024-09-20 01:41:26
合計ジャッジ時間 1,566 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
21,716 KB
testcase_01 AC 76 ms
21,588 KB
testcase_02 AC 77 ms
21,720 KB
testcase_03 AC 78 ms
21,584 KB
testcase_04 AC 70 ms
21,592 KB
testcase_05 AC 78 ms
21,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
x = list(map(int, input().split()))
odd = 0
for i in x:
    if i % 2:
        odd += 1
print(abs(n - 2 * odd))
0