일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 프로그래머스 #mysql #12세 이하인 여자 환자 목록 출력하기 #알고리즘 #코린이 #개발자 #study
- 프로그래머스 #mysql #흉부외과 또는 일반외과 의사 목록 출력하기 #알고리즘 #코린이 #개발자 #study
- 프로그래머스 #잡은 물고기의 평균 길이 구하기 #mysql #알고리즘 #코린이 #개발자 #study
- 프로그래머스 #모음 제거 #알고리즘 #자바 #java #코린이 #개발자 #study
- 프로그래머스 #mysql #알고리즘 #어린 동물 찾기 #코린이 #개발자 #study
- 프로그래머스 #한 해에 잡은 물고기 수 구하기 #mysql #알고리즘 #코린이 #개발자 #study
- 백준 #4153 #직각삼각형 #알고리즘 #자바 #java #코린이 #개발자 #study
- 프로그래머스 #mysql #역순 정렬하기 #알고리즘 #코린이 #개발자 #study
- 프로그래머스 #가장 큰 물고기 10마리 구하기 #mysql #알고리즘 #코린이 #개발자 #study
- 코린이 #개발자 #study
- 프로그래머스 #python 개발자 찾기 #알고리즘 #mysql #코린이 #개발자 #study
- 백준 #일곱 난쟁이 #2309 #자바 #java #알고리즘 #코린이 #개발자 #study
- 프로그래머스 #동명 동물 수 찾기 #mysql #데이터베이스 #db #코린이 #개발자 #알고리즘
- mysql #min() #max() #최소값 #최대값 #코린이 #개발자 #study
- 백준 #다이얼 #5622 #알고리즘 #자바 #java #코린이 #개발자 #study
- 프로그래머스 #알고리즘 #mysql #인기있는 아이스크림 #코린이 #개발자 #study
- 특정 옵션이 포함된 자동차 리스트 구하기 #코린이 #개발자 #study
- 프로그래머스 #mysql #경기도에 위치한 식품창고 목록 출력하기 #알고리즘 #코린이 #개발자 #study
- 프로그래머스 #잡은 물고기 중 가장 큰 물고기의 길이 구하기 #알고리즘 #mysql #코린이 #개발자 #study
- 프로그래머스 #mysql #알고리즘 #자동차 대여 기록에서 장기/단기 대여 구분하기 #코린이 #개발자 #study
- 프로그래머스 #조건에 맞는 회원수 구하기 #mysql #알고리즘 #코린이 #개발자 #study
- 프로그래머스 #mysql #알고리즘 #코린이 #개발자 #study
- 프로그래머스 #나이 정보가 없는 회원 수 구하기 #mysql #알고리즘 #코린이 #개발자 #study
- 프로그래머스 #과일로 만든 아이스크림 고르기 #mysql #알고리즘 #코린이 #개발자 #study
- 프로그래머스 #아픈 동물 찾기 #mysql #알고리즘 #코린이 #개발자 #study
- 프로그래머스 #알고리즘 #mysql #
- 백준 #네 번째 점 #3009 #자바 #java #알고리즘 #코린이 #개발자 #study
- 백준 #
- 프로그래머스 #mysql #알고리즘 #이름이 있는 동물의 아이디 #코린이 #개발자 #study
- 프로그래머스 #mysql #동명 동물 수 찾기 #알고리즘 #코린이 #개발자
- Today
- Total
목록알고리즘문제 (118)
luke
문제 : https://www.acmicpc.net/problem/5355 문제. 풀이. public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); sc.nextLine(); for (int i = 0; i 이번 문제는 " 화성 수학 " 문제다.특정한 문자가 들어갔을 때 다른 연산자를 사용하는 것이다.문제 지문 이해하는데는 큰 어려움이 없을 거라 생각하고 바로 문제 풀이를 해보겠다. 1. 입력값을 문자열로 받아 split()함수를 사용해 공백 기준으로 잘라 준다. 2..
문제 : https://www.acmicpc.net/problem/1110 문제. 풀이.import java.util.Scanner;public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); sc.close(); int cnt = 0; int copy = n; while (true) { n = ((n % 10) * 10) + ((n / 10) + (n % 10)) % 10; cnt++; ..
https://www.acmicpc.net/problem/2851 문제. 풀이. public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int sum = 0; int sc = 100; int answer = 0; for (int i = 0; i 이번 문제는 " 슈퍼 마리오 " 문제다.아직 필자한테는 쉽다는 말이 나오는 문제는 아니었던 것 같다...하지만 막상 풀고 문제 이해하면 어떻게 작동..
https://school.programmers.co.kr/learn/courses/30/lessons/120837 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr 문제. 풀이. class Solution { public int solution(int hp) { int answer = 0; int[] arr = {5,3,1}; for(int i = 0; i 프로그래머스 문제 중 " 개미 군단 "이라는 문제다.그저 심심해서 프로그래머스 앞부분 문제를 푸는데... 오늘 올린 글 ..
https://www.acmicpc.net/problem/5585 문제. 풀이. public class Main { public static void main(String[] args){ Scanner sc = new Scanner(System.in); int money = 1000; int m = sc.nextInt(); sc.close(); int tot = money - m; int change = 0; while (tot > 0){ if (tot >= 500) { tot -= 500; change++; ..
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..