結果

問題 No.99 ジャンピング駒
ユーザー brthyyjpbrthyyjp
提出日時 2021-11-15 01:47:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 94 ms / 5,000 ms
コード長 159 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 84,608 KB
最終ジャッジ日時 2024-05-07 18:26:39
合計ジャッジ時間 1,691 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
84,480 KB
testcase_01 AC 94 ms
84,224 KB
testcase_02 AC 94 ms
84,352 KB
testcase_03 AC 93 ms
84,608 KB
testcase_04 AC 92 ms
83,968 KB
testcase_05 AC 93 ms
83,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
X = list(map(int, input().split()))
X.sort()
cnt = 0
for x in X:
    if x%2 == 0:
        cnt += 1
    else:
        cnt -= 1
print(abs(cnt))
0