結果

問題 No.99 ジャンピング駒
ユーザー kohei2019kohei2019
提出日時 2021-06-02 21:02:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 5,000 ms
コード長 182 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 85,236 KB
最終ジャッジ日時 2024-11-15 16:33:55
合計ジャッジ時間 1,789 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
84,544 KB
testcase_01 AC 66 ms
84,204 KB
testcase_02 AC 66 ms
85,236 KB
testcase_03 AC 66 ms
84,304 KB
testcase_04 AC 64 ms
83,428 KB
testcase_05 AC 69 ms
84,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
lsX = list(map(int,input().split()))
cnto = 0
cnte = 0
for i in range(N):
    if lsX[i] % 2 == 0:
        cnto += 1
    else:
        cnte += 1
print(abs(cnto-cnte))
0