結果
問題 | No.99 ジャンピング駒 |
ユーザー | 双六 |
提出日時 | 2020-07-22 10:33:31 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 82 ms / 5,000 ms |
コード長 | 423 bytes |
コンパイル時間 | 192 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 88,064 KB |
最終ジャッジ日時 | 2024-06-11 04:12:23 |
合計ジャッジ時間 | 2,156 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 77 ms
87,652 KB |
testcase_01 | AC | 82 ms
87,296 KB |
testcase_02 | AC | 76 ms
87,808 KB |
testcase_03 | AC | 77 ms
88,064 KB |
testcase_04 | AC | 75 ms
86,016 KB |
testcase_05 | AC | 77 ms
85,888 KB |
ソースコード
# import sys; input = sys.stdin.buffer.readline # sys.setrecursionlimit(10**7) from collections import defaultdict con = 10 ** 9 + 7; INF = float("inf") import copy def getlist(): return list(map(int, input().split())) #処理内容 def main(): N = int(input()) X = getlist() odd = 0 even = 0 for i in X: if i % 2 == 0: even += 1 else: odd += 1 print(abs(odd - even)) if __name__ == '__main__': main()