QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#623156 | #5732. Even or Odd | maxy1991991 | WA | 0ms | 3600kb | C++17 | 410b | 2024-10-09 10:26:02 | 2024-10-09 10:26:03 |
Judging History
answer
#include <iostream>
#include <vector>
#include <string>
#include <fstream>
using namespace std;
int main()
{
int n=0;
ifstream myfile("input.txt");
myfile >> n;
if (n%2==1) {
std::cout << "Either";
}
else if (n%2==0) {
if ((n/2)%2==1) {
std::cout << "Odd";
}
else {
std::cout << "Even";
}
}
}
詳細信息
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3600kb
input:
1
output:
Even
result:
wrong answer 1st lines differ - expected: 'Either', found: 'Even'