(SPOJ) 8700 - Escada - 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 pessoas = Integer.parseInt(tokenizer.nextToken());
line = br.readLine();
tokenizer = new StringTokenizer(line);
int tempoAnterior = Integer.parseInt(tokenizer.nextToken());;
int tempoNovo;
int somaTempo = 0;
for (int i = 0; i < pessoas-1; i++) {
line = br.readLine();
tempoNovo = Integer.parseInt(line);
if (tempoNovo < (tempoAnterior+10)) {
somaTempo = somaTempo + (tempoNovo+10)-(tempoAnterior+10);
}
else {
somaTempo += 10;
}
tempoAnterior = tempoNovo;
}
somaTempo += 10;
System.out.println(somaTempo);
return;
}
}
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 pessoas = Integer.parseInt(tokenizer.nextToken());
line = br.readLine();
tokenizer = new StringTokenizer(line);
int tempoAnterior = Integer.parseInt(tokenizer.nextToken());;
int tempoNovo;
int somaTempo = 0;
for (int i = 0; i < pessoas-1; i++) {
line = br.readLine();
tempoNovo = Integer.parseInt(line);
if (tempoNovo < (tempoAnterior+10)) {
somaTempo = somaTempo + (tempoNovo+10)-(tempoAnterior+10);
}
else {
somaTempo += 10;
}
tempoAnterior = tempoNovo;
}
somaTempo += 10;
System.out.println(somaTempo);
return;
}
}
Comments
Post a Comment