(SPOJ) 19947 - Língua do P - Solução
import java.io.*;
import java.util.*;
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 {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
String line = br.readLine();
StringTokenizer tokenizer = new StringTokenizer(line);
String resultado = "";
String palavra = "";
int tamanho;
int contador = 0;
while (tokenizer.hasMoreTokens()) {
if (contador != 0) {
resultado += " ";
}
else {
contador = 1;
}
palavra = tokenizer.nextToken();
tamanho = palavra.length();
for (int i = 0; i < tamanho; i++) {
if (i%2 != 0) {
resultado += palavra.charAt(i);
}
}
}
bw.write(resultado + "\n");
bw.flush();
bw.close();
return;
}
}
import java.util.*;
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 {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
String line = br.readLine();
StringTokenizer tokenizer = new StringTokenizer(line);
String resultado = "";
String palavra = "";
int tamanho;
int contador = 0;
while (tokenizer.hasMoreTokens()) {
if (contador != 0) {
resultado += " ";
}
else {
contador = 1;
}
palavra = tokenizer.nextToken();
tamanho = palavra.length();
for (int i = 0; i < tamanho; i++) {
if (i%2 != 0) {
resultado += palavra.charAt(i);
}
}
}
bw.write(resultado + "\n");
bw.flush();
bw.close();
return;
}
}
Comments
Post a Comment