結果

問題 No.99 ジャンピング駒
ユーザー maspymaspy
提出日時 2020-01-21 13:54:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 68 ms / 5,000 ms
コード長 299 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,068 KB
最終ジャッジ日時 2024-07-05 16:05:06
合計ジャッジ時間 1,502 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
19,944 KB
testcase_01 AC 65 ms
19,812 KB
testcase_02 AC 64 ms
19,772 KB
testcase_03 AC 66 ms
19,812 KB
testcase_04 AC 63 ms
19,940 KB
testcase_05 AC 65 ms
20,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

# 偶奇が両方あれば、必ず消せることがわかる

N,*A = map(int,read().split())

od = sum(x&1 for x in A)
ev = N - od

x = min(od, ev)
answer = N - 2 * x
print(answer)
0