結果

問題 No.99 ジャンピング駒
ユーザー matsu7874matsu7874
提出日時 2015-10-07 12:41:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 88 ms / 5,000 ms
コード長 152 bytes
コンパイル時間 113 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 21,648 KB
最終ジャッジ日時 2024-07-20 01:50:46
合計ジャッジ時間 1,130 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
21,588 KB
testcase_01 AC 80 ms
21,592 KB
testcase_02 AC 73 ms
21,648 KB
testcase_03 AC 79 ms
21,592 KB
testcase_04 AC 88 ms
21,588 KB
testcase_05 AC 81 ms
21,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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