[BOJ] 백준 2559번 : 수열 - Java
·
Algorithm Solving/Java
https://www.acmicpc.net/problem/2559 import java.io.*;import java.util.*;public class Main { static int N, K; static int[] numArr; static int max; public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(br.readLine(), " "); N = Integer.parseInt(st.nextTok..