(SPOJ) 811 - Quermesse - 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 numParticipantes = Integer.valueOf(tokenizer.nextToken());
            
            if (numParticipantes == 0) {
                return;
            }
           
            contador++;
            System.out.println("Teste " + contador);

            int ganhador = 0; 
            int numIngresso;                      
            line = br.readLine();
            tokenizer = new StringTokenizer(line);
            for (int i = 0; i < numParticipantes; i++) {
                numIngresso = Integer.valueOf(tokenizer.nextToken());
           
                if (numIngresso == i+1) {
                    ganhador = numIngresso;
                }
            }   
           
            System.out.println(ganhador);
           
            System.out.println();
        } 
       
        return;
    }
}

Comments

Popular posts from this blog

(Coderbyte) Powers of Two - Solução

(Coderbyte) Dash Insert II - Solução

(CoderByte) Number Search - Solução