結果

問題 No.99 ジャンピング駒
ユーザー gorugo30gorugo30
提出日時 2021-02-23 16:47:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 121 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 84,380 KB
最終ジャッジ日時 2024-09-22 12:07:52
合計ジャッジ時間 1,743 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
83,264 KB
testcase_01 AC 63 ms
82,756 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
X = list(map(lambda x: int(x) % 2, input().split()))
z = X.count(0)
o = X.count(1)

print(z % 2 ^ o % 2)
0