Melhor resposta
Em java, você pode usar a classe Scanner para ler a entrada e System.out para imprimir a saída.
Scanner scanner = new Scanner(System.in);
int n = scanner.nextInt(); // read an integer from input stream.
System.out.println(n) // print n
No entanto, às vezes você obtém Limite de tempo excedido (TLE) devido ao desempenho do Scanner. Em vez disso, você pode usar BufferedReader.
class InputReader {
public BufferedReader reader;
public StringTokenizer tokenizer;
public InputReader(InputStream stream) {
reader = new BufferedReader(new InputStreamReader(stream), 32768);
tokenizer = null;
tokenizer = null;
}
public String next() {
while (tokenizer == null || !tokenizer.hasMoreTokens()) {
try {
tokenizer = new StringTokenizer(reader.readLine());
} catch (IOException e) {
throw new RuntimeException(e);
}
}
return tokenizer.nextToken();
}
public int nextInt() {
return Integer.parseInt(next());
}
public long nextLong() {
return Long.parseLong(next());
}
}
Resposta
Deixe-me tentar explicar com Problema de Professor irritado do HackerRank.
O código a seguir lê System.in e imprime a saída, o resto é autoexplicativo:
import java.io.*;
import java.util.*;
public class Solution {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
int t = in.nextInt();
for (int i = 0; i < t; i++) {
int nstudent = in.nextInt();
int threshold = in.nextInt();
int[] arrival = new int[nstudent];
for (int j = 0; j < nstudent; j++) {
arrival[j] = in.nextInt();
}
algo(arrival, threshold);
}
}
public static void algo(int[] arrival, int threshold){
//your implementation
}
}