結果

問題 No.99 ジャンピング駒
ユーザー H20H20
提出日時 2021-08-03 13:49:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 67 ms / 5,000 ms
コード長 141 bytes
コンパイル時間 818 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 84,352 KB
最終ジャッジ日時 2024-09-16 14:56:12
合計ジャッジ時間 2,209 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
83,840 KB
testcase_01 AC 66 ms
84,352 KB
testcase_02 AC 67 ms
83,712 KB
testcase_03 AC 67 ms
83,584 KB
testcase_04 AC 65 ms
83,456 KB
testcase_05 AC 64 ms
83,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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