結果

問題 No.99 ジャンピング駒
ユーザー convexineqconvexineq
提出日時 2020-12-03 07:38:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 5,000 ms
コード長 231 bytes
コンパイル時間 497 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 87,040 KB
最終ジャッジ日時 2024-09-13 15:13:18
合計ジャッジ時間 1,532 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
86,656 KB
testcase_01 AC 81 ms
86,296 KB
testcase_02 AC 79 ms
87,040 KB
testcase_03 AC 78 ms
86,912 KB
testcase_04 AC 75 ms
86,392 KB
testcase_05 AC 78 ms
85,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!
import sys
read = sys.stdin.read
readline = sys.stdin.readline

n = int(readline())
*x, = map(int,readline().split())

ans = 0
for i in x:
    if i%2==0: ans += 1
    else: ans -= 1
print(abs(ans))
0