(SPOJ) 11648 - Aviões de papel - Solução
É possível mudar a operação de * para um for com somatório para obter a resposta. Poderia diminuir o tempo de execuçã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));
line = br.readLine();
StringTokenizer tokenizer = new StringTokenizer(line);
int participantes = Integer.valueOf(tokenizer.nextToken());
int papel = Integer.valueOf(tokenizer.nextToken());
int papelPorPartic = Integer.valueOf(tokenizer.nextToken());
if ((participantes*papelPorPartic) <= papel) {
System.out.println("S");
}
else {
System.out.println("N");
}
return;
}
}
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));
line = br.readLine();
StringTokenizer tokenizer = new StringTokenizer(line);
int participantes = Integer.valueOf(tokenizer.nextToken());
int papel = Integer.valueOf(tokenizer.nextToken());
int papelPorPartic = Integer.valueOf(tokenizer.nextToken());
if ((participantes*papelPorPartic) <= papel) {
System.out.println("S");
}
else {
System.out.println("N");
}
return;
}
}
Comments
Post a Comment