QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#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";
}
}
詳細信息
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3648kb
input:
1
output:
Odd
result:
wrong answer 1st lines differ - expected: 'Either', found: 'Odd'