일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 백준 #4153 #직각삼각형 #알고리즘 #자바 #java #코린이 #개발자 #study
- 프로그래머스 #mysql #알고리즘 #어린 동물 찾기 #코린이 #개발자 #study
- 백준 #
- 프로그래머스 #알고리즘 #mysql #
- 프로그래머스 #mysql #경기도에 위치한 식품창고 목록 출력하기 #알고리즘 #코린이 #개발자 #study
- 프로그래머스 #mysql #흉부외과 또는 일반외과 의사 목록 출력하기 #알고리즘 #코린이 #개발자 #study
- 백준 #네 번째 점 #3009 #자바 #java #알고리즘 #코린이 #개발자 #study
- 프로그래머스 #과일로 만든 아이스크림 고르기 #mysql #알고리즘 #코린이 #개발자 #study
- 프로그래머스 #mysql #알고리즘 #코린이 #개발자 #study
- 프로그래머스 #아픈 동물 찾기 #mysql #알고리즘 #코린이 #개발자 #study
- mysql #min() #max() #최소값 #최대값 #코린이 #개발자 #study
- 코린이 #개발자 #study
- 프로그래머스 #mysql #동명 동물 수 찾기 #알고리즘 #코린이 #개발자
- 프로그래머스 #한 해에 잡은 물고기 수 구하기 #mysql #알고리즘 #코린이 #개발자 #study
- 프로그래머스 #동명 동물 수 찾기 #mysql #데이터베이스 #db #코린이 #개발자 #알고리즘
- 프로그래머스 #나이 정보가 없는 회원 수 구하기 #mysql #알고리즘 #코린이 #개발자 #study
- 프로그래머스 #잡은 물고기의 평균 길이 구하기 #mysql #알고리즘 #코린이 #개발자 #study
- 프로그래머스 #잡은 물고기 중 가장 큰 물고기의 길이 구하기 #알고리즘 #mysql #코린이 #개발자 #study
- 프로그래머스 #가장 큰 물고기 10마리 구하기 #mysql #알고리즘 #코린이 #개발자 #study
- 프로그래머스 #mysql #역순 정렬하기 #알고리즘 #코린이 #개발자 #study
- 프로그래머스 #mysql #알고리즘 #자동차 대여 기록에서 장기/단기 대여 구분하기 #코린이 #개발자 #study
- 프로그래머스 #mysql #알고리즘 #이름이 있는 동물의 아이디 #코린이 #개발자 #study
- 백준 #일곱 난쟁이 #2309 #자바 #java #알고리즘 #코린이 #개발자 #study
- 프로그래머스 #알고리즘 #mysql #인기있는 아이스크림 #코린이 #개발자 #study
- 백준 #다이얼 #5622 #알고리즘 #자바 #java #코린이 #개발자 #study
- 프로그래머스 #조건에 맞는 회원수 구하기 #mysql #알고리즘 #코린이 #개발자 #study
- 프로그래머스 #mysql #12세 이하인 여자 환자 목록 출력하기 #알고리즘 #코린이 #개발자 #study
- 프로그래머스 #python 개발자 찾기 #알고리즘 #mysql #코린이 #개발자 #study
- 프로그래머스 #모음 제거 #알고리즘 #자바 #java #코린이 #개발자 #study
- 특정 옵션이 포함된 자동차 리스트 구하기 #코린이 #개발자 #study
- Today
- Total
목록알고리즘문제/백준 문제(Java) (85)
luke
https://www.acmicpc.net/problem/2581 문제. 풀이. import java.util.Scanner;public class Main { public static boolean[] prime; public static void main(String[] args){ Scanner sc = new Scanner(System.in); int m = sc.nextInt(); int n = sc.nextInt(); prime = new boolean[n + 1]; //배열 생성 make_prime(n); //소수 합, 최소값 int sum = 0; int min..
https://www.acmicpc.net/problem/10172 문제. 풀이. public class Main { public static void main(String[] args){ System.out.println("|\\_/|"); System.out.println("|q p| /}"); System.out.println("( 0 )\"\"\"\\"); System.out.println("|\"^\"` |"); System.out.println("||_/=\\\\__|"); }} 이번 문제 또한 단계별 문제 풀기의 항목 중 하나가 남아서 처리한 문제다.그저 입력값도 없이 출력만 하면 되..
https://www.acmicpc.net/problem/2753 문제. 풀이. public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int num = Integer.parseInt(br.readLine()); if (num % 4 == 0) { if (num % 400 == 0) { System.out.println("1"); } else if (nu..
https://www.acmicpc.net/problem/25314 문제. 풀이. public class Main { public static void main(String[] args){ Scanner sc = new Scanner(System.in); int num = sc.nextInt(); String str = ""; sc.close(); for (int i = 1; i 오늘 포스팅은 백준 단계별 문제를 보다 3개의 항목들이 1문제씩 남아서... 한 문제씩 처리하기로 했다.이번 문제는 반복문 단계인 " 코딩은 체육과목 입니다 " 문제다.4의 배수일때 마다 "long" 문자열을 출력한 뒤 마지막에 "in..
https://www.acmicpc.net/problem/1292 문제. 풀이. public class Main { public static void main(String[] args){ Scanner sc = new Scanner(System.in); ArrayList list = new ArrayList(); int a = sc.nextInt(); int b = sc.nextInt(); for (int i = 0; i 이번 문제는 " 쉽게 푸는 문제 "라는 문제다.수는 1,2,2,3,3,3,4,4,4,4,5,5,...... 식으로 각 숫자의 크기만큼 중복되어 있는 것이다.최대 1000이며 입력한 a부터 b..
https://www.acmicpc.net/problem/10989 문제. 풀이. public class Main { public static void main(String[] args) throws IOException { BufferedReader bf = new BufferedReader(new InputStreamReader(System.in)); StringBuilder sb = new StringBuilder(); int num = Integer.parseInt(bf.readLine()); int[] arr = new int[num]; for (int i = 0; i 오늘의 문제는 " 수 정렬하기 3 " ..
https://www.acmicpc.net/problem/2738 문제. 풀이. public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int m = sc.nextInt(); int[][] arr1 = new int[n][m]; int[][] arr2 = new int[n][m]; for (int i = 0; i 이번 문제는 " 행렬 덧셈 " 문제다.말 그대로 배열로 접근하는데 2차원배열 입력값을 받아 덧셈 문제인 것이다. 그럼 바로 풀..
https://www.acmicpc.net/problem/13241 문제. 풀이. public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); long a = sc.nextLong(); long b = sc.nextLong(); System.out.println(a * b / Gcd(a, b)); } static long Gcd(long a, long b) { while (b != 0) { long temp = a % b; a = b; ..
https://www.acmicpc.net/problem/10824 문제. 풀이. public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String[] arr = new String[4]; for (int i = 0; i 이번 문제는 " 네 수 " 문제다.a, b, c, d 입력값이 주어지면 a, b를 앞뒤로 붙이고 c, d를 붙인 뒤 합을 구하는 문제다.바로 보자마자 느낌이 오겠지만 문자열로 입력받은뒤 형변환 해주면 끝이다!그럼 바로 풀이를 해보겠다. 1. a,b,c,d 4개의 입력 값 이므로 4 ..
https://www.acmicpc.net/problem/9093 문제. 풀이. public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int num = sc.nextInt(); sc.nextLine(); for (int i = 0; i = 0; j--) { System.out.print(split[j]); if (j > 0) { System.out.print(" "); } } ..