Submission #2861182


Source Code Expand

#include <iostream>
#include <string>
#include <vector>
#include <cstdlib>
#include <cstdio>
#include <cmath>
#include <algorithm>
#include <map>
#include <stack>
#include <queue>
#include <set>
#include <cstring>

using namespace std;
// ascending order
#define vsort(v) sort(v.begin(), v.end())
// descending order
#define vsort_r(v) sort(v.begin(), v.end(), greater<int>())
// ascending order
#define asort(array, N) sort(array, array + N)
// descending order
#define asort_r(array, N) sort(array, array + N, greater<int>())
#define vunique(v) v.erase(unique(v.begin(), v.end()), v.end())
#define mp make_pair
#define ts(x) to_string(x)
typedef long long ll;
typedef pair<int, int> P;
const ll INF = 1e18;

ll N;

int main(){
	cin.tie(0);
	ios::sync_with_stdio(false);
	cin >> N;
	ll countOdd;
	for(int i = 0; i < N; i++) {
		int a;
		cin >> a;
		if(a % 2 != 0) countOdd++;
	}

	if(countOdd % 2 == 0) cout << "YES" << endl;
	else cout << "NO" << endl;
}

Submission Info

Submission Time
Task A - Addition
User tsutarou10
Language C++14 (GCC 5.4.1)
Score 300
Code Size 1002 Byte
Status AC
Exec Time 11 ms
Memory 256 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 300 / 300
Status
AC × 2
AC × 16
Set Name Test Cases
Sample sample1.txt, sample2.txt
All sample1.txt, sample2.txt, in1.txt, in10.txt, in11.txt, in12.txt, in2.txt, in3.txt, in4.txt, in5.txt, in6.txt, in7.txt, in8.txt, in9.txt, sample1.txt, sample2.txt
Case Name Status Exec Time Memory
in1.txt AC 11 ms 256 KB
in10.txt AC 11 ms 256 KB
in11.txt AC 1 ms 256 KB
in12.txt AC 1 ms 256 KB
in2.txt AC 11 ms 256 KB
in3.txt AC 11 ms 256 KB
in4.txt AC 11 ms 256 KB
in5.txt AC 11 ms 256 KB
in6.txt AC 11 ms 256 KB
in7.txt AC 11 ms 256 KB
in8.txt AC 11 ms 256 KB
in9.txt AC 11 ms 256 KB
sample1.txt AC 1 ms 256 KB
sample2.txt AC 1 ms 256 KB