QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#623187 | #5732. Even or Odd | chalupa | WA | 0ms | 3648kb | C++17 | 163b | 2024-10-09 10:30:49 | 2024-10-09 10:30:51 |
Judging History
answer
#include <iostream>
int main() {
int N;
std::cin >> N;
if (N % 2 == 0) {
std::cout << "Either\n";
} else {
std::cout << "Odd\n";
}
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3648kb
input:
1
output:
Odd
result:
wrong answer 1st lines differ - expected: 'Either', found: 'Odd'