QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#623507#5732. Even or Oddmaxy1991991WA 0ms3596kbC++17449b2024-10-09 12:29:562024-10-09 12:29:57

Judging History

This is the latest submission verdict.

  • [2024-10-09 12:29:57]
  • Judged
  • Verdict: WA
  • Time: 0ms
  • Memory: 3596kb
  • [2024-10-09 12:29:56]
  • Submitted

answer

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

int main()
{
    int n;
    std::ifstream myfile("input.txt");
    myfile >> n; 
    std::cout << n;
    myfile >> n;
    std::cout << 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: 3596kb

input:

1

output:

00Even

result:

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