結果

問題 No.99 ジャンピング駒
ユーザー ytftytft
提出日時 2022-11-12 12:01:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 5,000 ms
コード長 129 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-09-14 03:41:42
合計ジャッジ時間 1,926 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
76,160 KB
testcase_01 AC 68 ms
76,416 KB
testcase_02 AC 68 ms
76,544 KB
testcase_03 AC 71 ms
76,288 KB
testcase_04 AC 67 ms
76,416 KB
testcase_05 AC 67 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda:sys.stdin.readline().rstrip()
N=int(input())
O=sum([int(i)%2 for i in input().split()])
print(abs(N-2*O))
0