結果

問題 No.99 ジャンピング駒
ユーザー colognecologne
提出日時 2022-02-02 15:25:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 5,000 ms
コード長 232 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 93,952 KB
最終ジャッジ日時 2024-06-11 09:26:28
合計ジャッジ時間 1,567 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
90,880 KB
testcase_01 AC 82 ms
91,008 KB
testcase_02 AC 87 ms
90,624 KB
testcase_03 AC 82 ms
89,088 KB
testcase_04 AC 89 ms
93,952 KB
testcase_05 AC 78 ms
86,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys


def input(): return sys.stdin.readline().rstrip()


def main():
    N = int(input())
    *X, = map(int, input().split())
    print(abs(2 * len([x for x in X if x % 2 == 0]) - N))


if __name__ == '__main__':
    main()
0