(SPOJ) 817 - Dobradura - Solução

import java.io.*;
import java.util.*;

class Main {
    public static void main(String[] args) throws NumberFormatException, IOException {
        Main processando = new Main();
        processando.processa();
       
        System.exit(0);
    }
   
    void processa() throws NumberFormatException, IOException {
        String line = "";
       
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

        int contador = 0;       
        while((line = br.readLine()) != null) {
            StringTokenizer tokenizer = new StringTokenizer(line);
            int valor = Integer.parseInt(tokenizer.nextToken());

            if (valor == -1) {
                return;
            }
           
            contador++;
            System.out.println("Teste " + contador);

            int resultado = (int)Math.pow(((int)Math.pow(2,valor)+1),2);           
                                             
            System.out.println(resultado + "\n");
        }
                   
        return;
    }
}

Comments

Popular posts from this blog

(Coderbyte) Powers of Two - Solução

(Coderbyte) Dash Insert II - Solução

(CoderByte) Number Search - Solução