최상 답변
자바에서는 Scanner 클래스를 사용하여 입력을 읽고 System.out을 사용하여 출력을 인쇄 할 수 있습니다.
Scanner scanner = new Scanner(System.in);
int n = scanner.nextInt(); // read an integer from input stream.
System.out.println(n) // print n
하지만 때때로 시간 제한 초과 (TLE)가 발생합니다. 스캐너의 성능 때문입니다. 대신 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());
}
}
답변
Angry Professor 문제입니다.
다음 코드는 System.in에서 읽고 출력을 인쇄합니다. 나머지는 자명합니다.
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
}
}