Submission #1091544


Source Code Expand

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <memory.h>
#include <math.h>
#include <assert.h>
#include <stack>
#include <queue>
#include <map>
#include <set>
#include <algorithm>
#include <string>
#include <functional>
#include <vector>
#include <numeric>
#include <deque>
#include <utility>
#include <bitset>
#include <limits.h>
#include <iostream>
#include <unordered_set>
#include <unordered_map>

using namespace std;
typedef long long ll;
typedef unsigned long long llu;
typedef double lf;
typedef unsigned int uint;
typedef long double llf;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;

int n, c[2];

int main() {
	scanf("%d", &n);
	while(n--) {
		int x; scanf("%d", &x);
		c[x&1] += 1;
	}
	while(c[1] >= 2) {
		c[1] -= 2;
		c[0] += 1;
	}
	puts((c[1] % 2 == 1 || c[0] % 2 == 1) ? "NO" : "YES");
	return 0;
}

Submission Info

Submission Time
Task A - Addition
User tncks0121
Language C++14 (GCC 5.4.1)
Score 0
Code Size 893 Byte
Status WA
Exec Time 14 ms
Memory 256 KB

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:36:17: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d", &n);
                 ^
./Main.cpp:38:25: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
   int x; scanf("%d", &x);
                         ^

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 300
Status
AC × 2
AC × 11
WA × 3
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
Case Name Status Exec Time Memory
in1.txt WA 14 ms 256 KB
in10.txt AC 14 ms 256 KB
in11.txt WA 2 ms 256 KB
in12.txt AC 2 ms 256 KB
in2.txt AC 14 ms 256 KB
in3.txt WA 14 ms 256 KB
in4.txt AC 14 ms 256 KB
in5.txt AC 14 ms 256 KB
in6.txt AC 14 ms 256 KB
in7.txt AC 14 ms 256 KB
in8.txt AC 14 ms 256 KB
in9.txt AC 14 ms 256 KB
sample1.txt AC 3 ms 256 KB
sample2.txt AC 2 ms 256 KB