結果

問題 No.99 ジャンピング駒
ユーザー mokraimokrai
提出日時 2017-11-17 14:47:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 72 ms / 5,000 ms
コード長 332 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,868 KB
最終ジャッジ日時 2024-05-04 02:39:01
合計ジャッジ時間 1,835 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
21,864 KB
testcase_01 AC 66 ms
21,740 KB
testcase_02 AC 66 ms
21,868 KB
testcase_03 AC 67 ms
21,740 KB
testcase_04 AC 72 ms
21,736 KB
testcase_05 AC 69 ms
21,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N = int(input())
    nums = map(int, input().split())
    odd_count = 0
    even_count = 0

    for num in list(nums):
        if num % 2 == 0:
            even_count += 1
        else:
            odd_count += 1

    distance = odd_count - even_count
    print(abs(distance))

if __name__ == '__main__':
    main()
0