結果

問題 No.99 ジャンピング駒
ユーザー YU HiroseYU Hirose
提出日時 2024-06-20 16:02:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 5,000 ms
コード長 154 bytes
コンパイル時間 612 ms
コンパイル使用メモリ 82,860 KB
実行使用メモリ 86,872 KB
最終ジャッジ日時 2024-06-20 16:02:53
合計ジャッジ時間 2,436 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
86,256 KB
testcase_01 AC 68 ms
86,872 KB
testcase_02 AC 69 ms
86,744 KB
testcase_03 AC 71 ms
86,832 KB
testcase_04 AC 66 ms
85,332 KB
testcase_05 AC 72 ms
84,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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