목록백준_2559 (1)
변수의 기록

초기 내가 제출한 답.import java.util.*;import java.io.*;public class Main { static int[] list; static int max = Integer.MIN_VALUE; //기본 선언 음수 일 수 있으니 public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(br.readLine()); int n = Integer.parseInt(st.nextTok..
기타/코딩테스트
2025. 5. 6. 23:25