QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#623168 | #5732. Even or Odd | oschlimgen | WA | 0ms | 3792kb | C++20 | 603b | 2024-10-09 10:28:23 | 2024-10-09 10:28:25 |
Judging History
answer
#include <iostream>
#include <string>
#include <sstream>
#include <vector>
#include <fstream>
class inputParams {
public:
int n;
inputParams() : n(0) {
read();
}
void read() {
std::string line;
std::getline(std::cin, line);
if(line.size() > 0) {
n = line[0] - '0';
}
}
};
std::string createOutput(int n) {
if(n % 2 == 0) {
return "Odd";
} else {
return "Either";
}
}
int main() {
inputParams input;
std::string output = createOutput(input.n);
std::cout << output << std::endl;
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3788kb
input:
1
output:
Either
result:
ok single line: 'Either'
Test #2:
score: 0
Accepted
time: 0ms
memory: 3528kb
input:
2
output:
Odd
result:
ok single line: 'Odd'
Test #3:
score: 0
Accepted
time: 0ms
memory: 3792kb
input:
3
output:
Either
result:
ok single line: 'Either'
Test #4:
score: -100
Wrong Answer
time: 0ms
memory: 3596kb
input:
4
output:
Odd
result:
wrong answer 1st lines differ - expected: 'Even', found: 'Odd'