Submission #1653915


Source Code Expand

// Example program
#include <bits/stdc++.h>

using namespace std;

typedef long long int ll;

const int MAXN = 1e5 + 1;

int a[MAXN];

int main()
{
    int n;
    cin >> n;
    int e = 0;
    int o = 0;
    for(int i = 0; i < n; i++)
    {
        cin >> a[i];
        if (a[i] % 2 == 0)
            e++;
        else
            o++;
    }
    e += (o / 2);
    if (o % 2 == 1 && e != 0)
        cout << "NO";
    else
        cout << "YES";
}

Submission Info

Submission Time
Task A - Addition
User vjudge2
Language C++14 (GCC 5.4.1)
Score 300
Code Size 444 Byte
Status AC
Exec Time 54 ms
Memory 640 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 54 ms 640 KB
in10.txt AC 53 ms 640 KB
in11.txt AC 1 ms 256 KB
in12.txt AC 1 ms 256 KB
in2.txt AC 54 ms 640 KB
in3.txt AC 53 ms 640 KB
in4.txt AC 54 ms 640 KB
in5.txt AC 53 ms 640 KB
in6.txt AC 54 ms 640 KB
in7.txt AC 53 ms 640 KB
in8.txt AC 54 ms 640 KB
in9.txt AC 53 ms 640 KB
sample1.txt AC 1 ms 256 KB
sample2.txt AC 1 ms 256 KB