Task: | Pakkaus |
Sender: | e^(pi*i)=-1 |
Submission time: | 2016-10-07 21:39:59 +0300 |
Language: | Java |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | RUNTIME ERROR | 0 |
#2 | RUNTIME ERROR | 0 |
#3 | RUNTIME ERROR | 0 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | RUNTIME ERROR | 0.15 s | 1 | details |
#2 | RUNTIME ERROR | 0.13 s | 1 | details |
#3 | RUNTIME ERROR | 0.13 s | 1 | details |
#4 | RUNTIME ERROR | 0.13 s | 1 | details |
#5 | RUNTIME ERROR | 0.13 s | 1 | details |
#6 | RUNTIME ERROR | 0.14 s | 2 | details |
#7 | RUNTIME ERROR | 0.14 s | 2 | details |
#8 | RUNTIME ERROR | 0.12 s | 2 | details |
#9 | RUNTIME ERROR | 0.12 s | 2 | details |
#10 | RUNTIME ERROR | 0.14 s | 2 | details |
#11 | RUNTIME ERROR | 0.20 s | 3 | details |
#12 | RUNTIME ERROR | 0.21 s | 3 | details |
#13 | RUNTIME ERROR | 0.14 s | 3 | details |
#14 | RUNTIME ERROR | 0.16 s | 3 | details |
#15 | RUNTIME ERROR | 0.15 s | 3 | details |
Code
import java.util.Scanner;public class Bittijono{public static void main(String args[]){Scanner inputTaker = new Scanner(System.in);int times = inputTaker.nextInt();long[] placesOfBits = new long[times];for(int i = 0; i < times; i++){placesOfBits[i] = inputTaker.nextLong();}for(int i = 0; i < times; i++){printNumberAtK(placesOfBits[i]);}}public static void printNumberAtK(long k){int amountOfExponents = 0;int lastExponent;for(int i = 0; true; i++){int exponent = (int) (Math.log(k) / Math.log(2));k -= (long) (Math.pow(2, exponent));amountOfExponents++;if(k == 0){lastExponent = exponent;break;}}int numberAtK = lastExponent % 2;if(amountOfExponents % 2 == 0){if(numberAtK == 0) numberAtK = 1;else numberAtK = 0;}System.out.println(numberAtK);}}
Test details
Test 1
Group: 1
Verdict: RUNTIME ERROR
input |
---|
1AAAAAAAAAAAAAAAAAAAA |
correct output |
---|
AAAAAAAAAAAAAAAAAAAA |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.util.InputMismatchException at java.util.Scanner.throwFor...
Test 2
Group: 1
Verdict: RUNTIME ERROR
input |
---|
1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A... |
correct output |
---|
AAAAAAAAAAAAAAAAAAAA |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.util.InputMismatchException at java.util.Scanner.throwFor...
Test 3
Group: 1
Verdict: RUNTIME ERROR
input |
---|
20A |
correct output |
---|
AAAAAAAAAAAAAAAAAAAA |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.util.InputMismatchException at java.util.Scanner.throwFor...
Test 4
Group: 1
Verdict: RUNTIME ERROR
input |
---|
2N1J2F1XH2D2B2VT1N1ES |
correct output |
---|
NNJFFXHDDBBVTVTNES |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.util.InputMismatchException at java.util.Scanner.throwFor...
Test 5
Group: 1
Verdict: RUNTIME ERROR
input |
---|
2Z1E1UN1P2A2A1D2F2EZ1FZ1J |
correct output |
---|
ZZEUNPAAAADFFEZEZFZJ |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.util.InputMismatchException at java.util.Scanner.throwFor...
Test 6
Group: 2
Verdict: RUNTIME ERROR
input |
---|
1AAAAAAAAAAAAAAAAAAAAAAAAAAAAA... |
correct output |
---|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA... |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.util.InputMismatchException at java.util.Scanner.throwFor...
Test 7
Group: 2
Verdict: RUNTIME ERROR
input |
---|
1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A... |
correct output |
---|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA... |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.util.InputMismatchException at java.util.Scanner.throwFor...
Test 8
Group: 2
Verdict: RUNTIME ERROR
input |
---|
1000A |
correct output |
---|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA... |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.util.InputMismatchException at java.util.Scanner.throwFor...
Test 9
Group: 2
Verdict: RUNTIME ERROR
input |
---|
11QOUDQFAFUPAYCPXZ15KANCLRGT9S... |
correct output |
---|
QOUDQFAFUPAYCPXZQOUDQFAFUPAYCP... |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.util.InputMismatchException at java.util.Scanner.throwFor...
Test 10
Group: 2
Verdict: RUNTIME ERROR
input |
---|
20NFBIUXOSO10XRXZRMULZDUFK14BB... |
correct output |
---|
NFBIUXOSONFBIUXOSONFBIUXOSONFB... |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.util.InputMismatchException at java.util.Scanner.throwFor...
Test 11
Group: 3
Verdict: RUNTIME ERROR
input |
---|
1AAAAAAAAAAAAAAAAAAAAAAAAAAAAA... |
correct output |
---|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA... |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.util.InputMismatchException at java.util.Scanner.throwFor...
Test 12
Group: 3
Verdict: RUNTIME ERROR
input |
---|
1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A... |
correct output |
---|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA... |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.util.InputMismatchException at java.util.Scanner.throwFor...
Test 13
Group: 3
Verdict: RUNTIME ERROR
input |
---|
1000000A |
correct output |
---|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA... |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.util.InputMismatchException at java.util.Scanner.throwFor...
Test 14
Group: 3
Verdict: RUNTIME ERROR
input |
---|
87GEIGDBZCYGSFYYCGQUAWQJFUUAQG... |
correct output |
---|
GEIGDBZCYGSFYYCGQUAWQJFUUAQGDT... |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.util.InputMismatchException at java.util.Scanner.throwFor...
Test 15
Group: 3
Verdict: RUNTIME ERROR
input |
---|
316XXYCLTBFQRAXHQPTLDB275NMQJD... |
correct output |
---|
XXYCLTBFQRAXHQPTLDBXXYCLTBFQRA... |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.util.InputMismatchException at java.util.Scanner.throwFor...