PS/boj
-
boj)15652 - N과 M (4)PS/boj 2020. 11. 17. 20:17
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 import java.io.*; import java.util.Scanner; public class boj_15652 { static Scanner sc = new Scanner(System.in); static BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out)); static int n, m; static int[] a = new int[10]; static boolean[] v = new boolean[10]; pub..
-
boj)1654 - 랜선 자르기PS/boj 2020. 11. 17. 17:31
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 import java.io.*; import java.util.*; public class boj_1654 { static BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); static StringTokenizer st; static long[] len; static int k, n; public static void main(String[] args) throws IOException { st ..
-
boj)5525 - IOIOIPS/boj 2020. 11. 17. 11:44
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 import java.io.*; public class boj_5525 { static BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); static int n, m, ans; static int[] dp; static String s; public static void main(String[] args) throws IOException { n = Integer.parseInt(br.readLine()); m = Integer.parseInt(br.readLine()); s = br.readLi..
-
boj)15651 - N과 M (3)PS/boj 2020. 11. 16. 16:18
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 import java.io.*; import java.util.Scanner; public class boj_15651 { static Scanner sc = new Scanner(System.in); static BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out)); static int[] numbers = new int[10]; static boolean[] v = new boolean[10]; static int n, m; pub..
-
boj)15650 - N과 M (2)PS/boj 2020. 11. 16. 11:22
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 import java.io.*; import java.util.Scanner; public class boj_15650 { static Scanner sc = new Scanner(System.in); static BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out)); static int[] numbers = new int[10]; static boolean[] visited = new boolean[10]; static int ..
-
boj)15649 - N과 M (1)PS/boj 2020. 11. 16. 09:28
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 import java.util.Scanner; public class boj_15649 { static Scanner sc = new Scanner(System.in); static int n, m; static int[] arr = new int[10]; static boolean[] isUsed = new boolean[10]; public static void main(String[] args) { n = sc.nextInt(); m = sc.nextInt(); func(0); } static void func(int k) ..
-
boj)5904 - Moo 게임PS/boj 2020. 11. 15. 13:00
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 import java.util.Scanner; public class boj_5904 { static Scanner sc = new Scanner(System.in); static int[] dp = new int[30]; public static void main(String[] args) { int N = sc.nextInt(); dp[0] = 3; for (int i = 1; i
-
boj)2447 - 별 찍기 - 10PS/boj 2020. 11. 14. 12:15
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 import java.io.*; import java.util.Scanner; public class boj_2447 { static char[][] map; static int length; static Scanner sc = new Scanner(System.in); static BufferedWriter bw = new BufferedWriter(new OutputStreamW..