/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 532.0 KiB
#2 Accepted 1ms 560.0 KiB
#3 Accepted 1ms 532.0 KiB
#4 Wrong Answer 1ms 536.0 KiB

Code

#include <bits/stdc++.h>
using namespace std;
#define fast ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);
#define ll long long
int main()
{
    fast
    /*ll t;
    cin>>t;
    while(t--) solve*/

    int x, y, z;
    cin>>x>>y>>z;

    vector <int> o, e;
    if (x%2 == 0) e.push_back(x);
    else o.push_back(x);
    if (y%2 == 0) e.push_back(y);
    else o.push_back(z);
    if (z%2 == 0) e.push_back(z);
    else o.push_back(z);

    if (o.size() == 1) cout<<o[0];
    else cout<<e[0];
    return 0;
}

Information

Submit By
Type
Submission
Problem
P1232 Parity
Contest
LUCC Presents Kick & Code Intra LU Programming Contest
Language
C++17 (G++ 13.2.0)
Submit At
2025-09-01 05:25:57
Judged At
2025-09-01 05:25:57
Judged By
Score
60
Total Time
1ms
Peak Memory
560.0 KiB