Problem B: 奇数和偶数(GESP一级202412)
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:2
Solved:2
Description
小杨有 n 个正整数,他想知道其中的奇数有多少个,偶数有多少个。
Input
第一行包含一个正整数 n ,代表正整数个数。1≤n≤10⁵ 。
之后 n 行,每行包含一个正整数。
Output
输出两个正整数(英文空格间隔),代表奇数的个数和偶数的个数。如奇数或偶数的个数为 0,则对应输出 0。
Sample Input Copy
5
1
2
3
4
5
Sample Output Copy
3 2