목록알고리즘 (55)
forDevLife

import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.Arrays; import java.util.Comparator; import java.util.Scanner; import java.util.StringTokenizer; public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String[] substraction = br.readLine()..

import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.Arrays; import java.util.Comparator; import java.util.Scanner; import java.util.StringTokenizer; public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int N = Integer.parseInt(br.readLine(..

import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.Arrays; import java.util.Scanner; import java.util.StringTokenizer; public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int N = Integer.parseInt(br.readLine()); StringTokenizer st = new ..

import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.Scanner; public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String[] arr = br.readLine().split(" "); int N = Integer.parseInt(arr[0]); int K = Integer.parseInt(arr[1]); int[] coin = new..
- 코드업 100제 링크 : codeup.kr/problemset.php?search=%EA%B8%B0%EC%B4%88100%EC%A0%9C 1001 : 출력하기 01 public class HelloWorldMain { public static void main(String[] args) { System.out.println("문장"); } } 1002 : 출력하기 02 public class HelloWorldMain { public static void main(String[] args) { System.out.println("hello world"); } } 1003 : 출력하기 03 public class HelloWorldMain { public static void main(String[] ..