QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#623148#5732. Even or Oddmaxy1991991WA 0ms3768kbC++20408b2024-10-09 10:23:272024-10-09 10:23:29

Judging History

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

  • [2024-10-09 10:23:29]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3768kb
  • [2024-10-09 10:23:27]
  • 提交

answer

#include <iostream>
#include <vector>
#include <string>
#include <fstream>

using namespace std;

int main()
{
    int n;
    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";
        }
    }
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 0
Wrong Answer
time: 0ms
memory: 3768kb

input:

1

output:

Even

result:

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