CSES - Datatähti 2017 alku - Results
Submission details
Task:Bittijono
Sender:peltola
Submission time:2016-10-06 19:53:08 +0300
Language:Java
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#10.15 s1details
#20.88 s2details
#30.14 s3details

Code

import java.util.Scanner;
public class Teht2 {
public static void main(String[] args) {
Scanner l = new Scanner(System.in);
int k = l.nextInt();
int[] m = new int[k];
for (int i = 0; i < k; i++) {
m[i] = l.nextInt();
}
for (int i : m) {
System.out.println(Integer.bitCount(i) % 2 + 1);
}
// System.out.println("" + Integer.bitCount(k));
}
}

Test details

Test 1

Group: 1

Verdict:

input
100
62
9
12
73
...

correct output
1
1
1
0
1
...

user output
2
1
1
2
2
...

Test 2

Group: 2

Verdict:

input
100000
565433
141881
120108
825392
...

correct output
1
1
0
0
1
...

user output
1
1
2
2
2
...

Test 3

Group: 3

Verdict:

input
100000
374768524402011755
937067109466254318
389256426086302899
932585725667010169
...

correct output
0
1
1
1
1
...

user output
(empty)

Error:
Exception in thread "main" java.util.InputMismatchException: For input string: "374768524402011755"
	at java.util.Scanner.nextInt(Scanner.java:2123)
	at java.util.Scanner.nextInt(Scanner.java:2076)
	at Teht2.main(Teht2.java:14)