(SPOJ) 8696 - Sedex - Solução

import java.io.*;
import java.util.*;
import java.lang.Math;
import java.math.*;

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));

        line = br.readLine();
        StringTokenizer tokenizer = new StringTokenizer(line);
        int diametro = Integer.valueOf(tokenizer.nextToken());
           
        line = br.readLine();
        tokenizer = new StringTokenizer(line);
       
        boolean caixaImpropria = false;
       
        int altura = Integer.valueOf(tokenizer.nextToken());
        int largura = Integer.valueOf(tokenizer.nextToken());
        int profundidade = Integer.valueOf(tokenizer.nextToken());
               
        if (altura < diametro || largura < diametro || profundidade < diametro) {
            caixaImpropria = true;
        }

        if (caixaImpropria) {
            System.out.println("N");
        }
        else {
            System.out.println("S");
        }
                                   
        return;
    }
}

Comments

Popular posts from this blog

(Coderbyte) Powers of Two - Solução

(Coderbyte) Dash Insert II - Solução

(CoderByte) Number Search - Solução