結果
問題 | No.99 ジャンピング駒 |
ユーザー | mkawa2 |
提出日時 | 2019-12-20 05:10:10 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 69 ms / 5,000 ms |
コード長 | 441 bytes |
コンパイル時間 | 72 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 21,756 KB |
最終ジャッジ日時 | 2024-07-07 13:27:24 |
合計ジャッジ時間 | 1,353 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 67 ms
21,756 KB |
testcase_01 | AC | 67 ms
21,756 KB |
testcase_02 | AC | 68 ms
21,500 KB |
testcase_03 | AC | 69 ms
21,676 KB |
testcase_04 | AC | 67 ms
21,744 KB |
testcase_05 | AC | 64 ms
21,752 KB |
ソースコード
import sys sys.setrecursionlimit(10 ** 6) int1 = lambda x: int(x) - 1 p2D = lambda x: print(*x, sep="\n") def MI(): return map(int, sys.stdin.readline().split()) def LI(): return list(map(int, sys.stdin.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] def main(): n=int(input()) xx=LI() odd=even=0 for x in xx: if x%2:odd+=1 else:even+=1 print(abs(odd-even)) main()