QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#623168#5732. Even or OddoschlimgenWA 0ms3792kbC++20603b2024-10-09 10:28:232024-10-09 10:28:25

Judging History

你现在查看的是最新测评结果

  • [2024-10-09 10:28:25]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3792kb
  • [2024-10-09 10:28:23]
  • 提交

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'