Submission #1091691


Source Code Expand

#include <bits/stdc++.h>

using namespace std;

// Optimization stuff
inline void debugMode() {
    #ifndef ONLINE_JUDGE
    freopen("debug.in", "r", stdin);
    #endif // ONLINE_JUDGE
}

inline void optimizeIt() {
    ios::sync_with_stdio(false);
    cin.tie(NULL);
}
// End optimization stuff

inline double ABS(const double &x) {
    return max(x, -x);
}

inline bool isPrime(const int &x) {
    if(x == 1) return false;

    for(int d = 2; d * d <= x; d++) {
        if(x % d == 0) return false;
    }

    return true;
}

typedef long long int ll;

const int NMax = 1e5 + 5;
const int LIM = 1e9;
const int MOD = 1e9 + 7;

int main(){
    //debugMode();
    //optimizeIt();

    int n;
    cin >> n;

    int par = 0;
    int ipar = 0;
    for(int i = 1; i <= n; i++) {
        int x;
        cin >> x;

        if(x % 2 == 0) {
            par++;
        } else {
            ipar++;
        }
    }

    if(ipar % 2 != 0) {
        cout << "NO";
    } else {
        cout << "YES";
    }

    return 0;

}

Submission Info

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

Judge Result

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