QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#623174#5732. Even or OddchalupaWA 0ms3696kbC++17228b2024-10-09 10:29:022024-10-09 10:29:04

Judging History

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

  • [2024-10-09 10:29:04]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3696kb
  • [2024-10-09 10:29:02]
  • 提交

answer

#include <iostream>
int main() {
  int N;
  std::cin >> N;

  if (N == 1) {
    std::cout << "Either\n";
    return 0;
  }
  if (N % 2 == 0) {
    std::cout << "Odd\n";
  } else {
    std::cout << "Even\n";
  }
}

详细

Test #1:

score: 100
Accepted
time: 0ms
memory: 3656kb

input:

1

output:

Either

result:

ok single line: 'Either'

Test #2:

score: 0
Accepted
time: 0ms
memory: 3696kb

input:

2

output:

Odd

result:

ok single line: 'Odd'

Test #3:

score: -100
Wrong Answer
time: 0ms
memory: 3628kb

input:

3

output:

Even

result:

wrong answer 1st lines differ - expected: 'Either', found: 'Even'