CSES - HIIT Open 2018 - Results
Submission details
Task:Alien Invasion
Sender:Puhi~
Submission time:2018-05-26 12:39:47 +0300
Language:C++
Status:READY
Result:
Test results
testverdicttime
#1ACCEPTED0.01 sdetails
#2ACCEPTED0.49 sdetails
#3ACCEPTED0.57 sdetails
#4ACCEPTED0.02 sdetails
#5ACCEPTED0.55 sdetails
#6ACCEPTED0.54 sdetails
#7ACCEPTED0.48 sdetails
#8ACCEPTED0.55 sdetails
#9ACCEPTED0.01 sdetails
#10ACCEPTED0.54 sdetails
#11ACCEPTED0.55 sdetails
#12ACCEPTED0.55 sdetails
#13ACCEPTED0.56 sdetails
#14ACCEPTED0.55 sdetails
#15ACCEPTED0.60 sdetails
#16ACCEPTED0.01 sdetails
#17ACCEPTED0.57 sdetails
#18ACCEPTED0.55 sdetails
#19ACCEPTED0.62 sdetails
#20ACCEPTED0.55 sdetails
#21ACCEPTED0.54 sdetails
#220.62 sdetails

Code

#include <iostream>

using namespace std;

int main() {
    unsigned long long n;
    cin >> n;
    for (unsigned long long i = 0; i < 1000000000; i++) {
        if (i*i == n) {
            cout << "odd" << endl;
            return 0;
        }
    }
    
    cout << "even" << endl;
    return 0;
}

Test details

Test 1

Verdict: ACCEPTED

input
1

correct output
odd

user output
odd

Test 2

Verdict: ACCEPTED

input
2

correct output
even

user output
even

Test 3

Verdict: ACCEPTED

input
3

correct output
even

user output
even

Test 4

Verdict: ACCEPTED

input
4

correct output
odd

user output
odd

Test 5

Verdict: ACCEPTED

input
5

correct output
even

user output
even

Test 6

Verdict: ACCEPTED

input
6

correct output
even

user output
even

Test 7

Verdict: ACCEPTED

input
7

correct output
even

user output
even

Test 8

Verdict: ACCEPTED

input
8

correct output
even

user output
even

Test 9

Verdict: ACCEPTED

input
9

correct output
odd

user output
odd

Test 10

Verdict: ACCEPTED

input
10

correct output
even

user output
even

Test 11

Verdict: ACCEPTED

input
11

correct output
even

user output
even

Test 12

Verdict: ACCEPTED

input
12

correct output
even

user output
even

Test 13

Verdict: ACCEPTED

input
13

correct output
even

user output
even

Test 14

Verdict: ACCEPTED

input
14

correct output
even

user output
even

Test 15

Verdict: ACCEPTED

input
15

correct output
even

user output
even

Test 16

Verdict: ACCEPTED

input
16

correct output
odd

user output
odd

Test 17

Verdict: ACCEPTED

input
17

correct output
even

user output
even

Test 18

Verdict: ACCEPTED

input
18

correct output
even

user output
even

Test 19

Verdict: ACCEPTED

input
19

correct output
even

user output
even

Test 20

Verdict: ACCEPTED

input
999999874000003969

correct output
odd

user output
odd

Test 21

Verdict: ACCEPTED

input
999999999999999989

correct output
even

user output
even

Test 22

Verdict:

input
1000000000000000000

correct output
odd

user output
even