코딩테스트/코드업(13)
-
[코드업 기초 100제] [기초 - 2차원 배열] 코드업 1096 ~ 1099 자바 풀이
문제 출처 https://github.com/haessae0/MCTP 1096. 바둑판에 흰 돌 놓기 import java.util.*; public class codeup1096 { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); int[][] array = new int[19][19]; int a = sc.nextInt(); for (int i = 0; i < a; i++) { int x = sc.nextInt(); int y = sc.nextInt(); array[x - 1][y - 1] = 1; } for (int i = 0; i < 19; i++) { for (int j = ..
2022.02.16 -
[코드업 기초 100제] [기초 - 1차원 배열] 코드업 1093 ~ 1095 자바 풀이
문제 출처 https://github.com/haessae0/MCTP 1093. 이상한 출석 번호 부르기 1 import java.util.*; public class codeup1093 { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); int[] array = new int[23]; int a = sc.nextInt(); for (int i = 0; i < a; i++) { array[sc.nextInt() - 1]++; } for (int i = 0; i < array.length; i++) { System.out.print(array[i] + " "); } } } 1094. 이..
2022.02.16 -
[코드업 기초 100제] [기초 - 종합] 코드업 1078 ~ 1092 자바 풀이
문제 출처 https://github.com/haessae0/MCTP 1078. 짝수 합 구하기 import java.io.*; public class codeup1078 { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int data = Integer.parseInt(br.readLine()); int cnt = 0; for (int i = 0; i
2022.02.16 -
[코드업 기초 100제] [기초 - 조건/선택 & 반복 실행 구조] 코드업 1065 ~ 1077 자바 풀이
문제 출처 https://github.com/haessae0/MCTP 1065. 정수 3개 입력받아 짝수만 출력하기 import java.io.*; public class codeup1065 { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String array[] = br.readLine().split(" "); int a = Integer.parseInt(array[0]); int b = Integer.parseInt(array[1]); int c = Integer.parseInt(array[2]); int ..
2022.02.15 -
[코드업 기초 100제] [기초 - 비트 & 삼항 연산] 코드업 1059 ~ 1064 자바 풀이
문제 출처 https://github.com/haessae0/MCTP 1059. 비트단위로 NOT 하여 출력하기 import java.io.*; public class codeup1059 { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int data = Integer.parseInt(br.readLine()); System.out.print(~data); } } 1060. 비트단위로 AND 하여 출력하기 import java.io.*; public class codeup1060 { public static vo..
2022.02.15 -
[코드업 기초 100제] [기초 - 비교 & 논리 연산] 코드업 1049 ~ 1058 자바 풀이
문제 출처 https://github.com/haessae0/MCTP 1049. 두 정수 일력받아 비교하기 1 import java.io.*; public class codeup1049 { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String array[] = br.readLine().split(" "); int a = Integer.parseInt(array[0]); int b = Integer.parseInt(array[1]); if (a > b) { System.out.print("1"); } else ..
2022.02.15