CSES - Datatähti 2017 alku - Results
Submission details
Task:Bittijono
Sender:Dojin04
Submission time:2016-10-16 14:46:59 +0300
Language:Java
Status:READY
Result:100
Feedback
groupverdictscore
#1ACCEPTED10
#2ACCEPTED19
#3ACCEPTED71
Test results
testverdicttimegroup
#1ACCEPTED0.17 s1details
#2ACCEPTED0.94 s2details
#3ACCEPTED1.02 s3details

Code

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
//package datatahti2;

import java.util.*;
import javax.swing.JOptionPane;

/**
 *
 * @author ACER
 */
public class Datatahti2 {

    static Long[] anArray;
    static Long st;
    static String biS;
    static StringBuilder v = new StringBuilder();

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        Scanner s = new Scanner(System.in);
        int tn = 0;
        String arrayS;
        int im = 0;

        String imt = s.nextLine();
        try {

            im = Integer.parseInt(imt);
            anArray = new Long[im];

        } catch (NumberFormatException ex) {
            System.out.println("That was not a number");
            System.exit(1);
        }
        while (tn < im) {

            arrayS = s.nextLine();
            anArray[tn] = Long.parseLong(arrayS);
            tn++;

        }
        tn = 0;
        while (tn < im) {

            binaari(anArray[tn]);
            tn++;

        }
    }

    private static void binaari(Long i2) {
        Long biL = 0L;
        try {

            biL = i2 - 1L;

        } catch (NumberFormatException ex) {

            JOptionPane.showMessageDialog(null, "That was not a number \n" + "Error: " + ex);

        }
        biS = Long.toBinaryString(biL);
        if (muunnos() < 0) {

            System.out.println("1");

        } else {

            System.out.println("0");

        }

    }

    private static int muunnos() {
        int tbi = 1;
        for (char luku : biS.toCharArray()) {

            if (luku == '1') {
                tbi = tbi * (-1);
            }

        }

        return tbi;

    }
}

Test details

Test 1

Group: 1

Verdict: ACCEPTED

input
100
62
9
12
73
...

correct output
1
1
1
0
1
...

user output
1
1
1
0
1
...

Test 2

Group: 2

Verdict: ACCEPTED

input
100000
565433
141881
120108
825392
...

correct output
1
1
0
0
1
...

user output
1
1
0
0
1
...

Test 3

Group: 3

Verdict: ACCEPTED

input
100000
374768524402011755
937067109466254318
389256426086302899
932585725667010169
...

correct output
0
1
1
1
1
...

user output
0
1
1
1
1
...