일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 프로그래머스 #python 개발자 찾기 #알고리즘 #mysql #코린이 #개발자 #study
- 프로그래머스 #과일로 만든 아이스크림 고르기 #mysql #알고리즘 #코린이 #개발자 #study
- 프로그래머스 #모음 제거 #알고리즘 #자바 #java #코린이 #개발자 #study
- 프로그래머스 #한 해에 잡은 물고기 수 구하기 #mysql #알고리즘 #코린이 #개발자 #study
- 프로그래머스 #mysql #알고리즘 #자동차 대여 기록에서 장기/단기 대여 구분하기 #코린이 #개발자 #study
- 프로그래머스 #잡은 물고기의 평균 길이 구하기 #mysql #알고리즘 #코린이 #개발자 #study
- 프로그래머스 #mysql #12세 이하인 여자 환자 목록 출력하기 #알고리즘 #코린이 #개발자 #study
- 프로그래머스 #mysql #역순 정렬하기 #알고리즘 #코린이 #개발자 #study
- 프로그래머스 #알고리즘 #mysql #인기있는 아이스크림 #코린이 #개발자 #study
- 프로그래머스 #잡은 물고기 중 가장 큰 물고기의 길이 구하기 #알고리즘 #mysql #코린이 #개발자 #study
- 백준 #다이얼 #5622 #알고리즘 #자바 #java #코린이 #개발자 #study
- 프로그래머스 #mysql #알고리즘 #이름이 있는 동물의 아이디 #코린이 #개발자 #study
- 특정 옵션이 포함된 자동차 리스트 구하기 #코린이 #개발자 #study
- 프로그래머스 #조건에 맞는 회원수 구하기 #mysql #알고리즘 #코린이 #개발자 #study
- 프로그래머스 #mysql #흉부외과 또는 일반외과 의사 목록 출력하기 #알고리즘 #코린이 #개발자 #study
- 프로그래머스 #mysql #경기도에 위치한 식품창고 목록 출력하기 #알고리즘 #코린이 #개발자 #study
- mysql #min() #max() #최소값 #최대값 #코린이 #개발자 #study
- 백준 #네 번째 점 #3009 #자바 #java #알고리즘 #코린이 #개발자 #study
- 프로그래머스 #mysql #알고리즘 #코린이 #개발자 #study
- 백준 #4153 #직각삼각형 #알고리즘 #자바 #java #코린이 #개발자 #study
- 프로그래머스 #아픈 동물 찾기 #mysql #알고리즘 #코린이 #개발자 #study
- 코린이 #개발자 #study
- 프로그래머스 #mysql #알고리즘 #어린 동물 찾기 #코린이 #개발자 #study
- 프로그래머스 #가장 큰 물고기 10마리 구하기 #mysql #알고리즘 #코린이 #개발자 #study
- 프로그래머스 #mysql #동명 동물 수 찾기 #알고리즘 #코린이 #개발자
- 프로그래머스 #나이 정보가 없는 회원 수 구하기 #mysql #알고리즘 #코린이 #개발자 #study
- 백준 #일곱 난쟁이 #2309 #자바 #java #알고리즘 #코린이 #개발자 #study
- 프로그래머스 #알고리즘 #mysql #
- 프로그래머스 #동명 동물 수 찾기 #mysql #데이터베이스 #db #코린이 #개발자 #알고리즘
- 백준 #
- Today
- Total
목록알고리즘문제 (118)
luke

https://school.programmers.co.kr/learn/courses/30/lessons/131705 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr 문제. 풀이. class Solution { public int solution(int[] number) { int answer = 0; int res = 0; for(int i = 0; i 오늘 문제는 프로그래머스 " 삼총사 " 문제다.문제 접근을 보면 3개의 수를 합할 때 0 이 나오면 카운트 1씩 해주면 된다..

문제 : https://www.acmicpc.net/problem/2908 문제. 풀이. import java.util.Scanner;public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String a = sc.next(); String b = sc.next(); String[] as = a.split(""); String[] bs = b.split(""); String resa = ""; String resb = ""; for (int i = as..

문제 : https://www.acmicpc.net/problem/3052 문제. 풀이. public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); boolean[] arr = new boolean[42]; int b = 42; for (int i = 0; i 오늘 문제는 백준의 " 나머지 " 문제다.이번 문제는 쉬운 거 같으면서도 아리송했다... 우선 배열이라 생각하면 숫자형(int...), 문자열(String...) 등 많이 사용하는 걸 알 수 있는데 boolean형으로 배열을 만들어 사용한 게 새로운..

https://school.programmers.co.kr/learn/courses/30/lessons/12930 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr 문제. 풀이. class Solution { public String solution(String s) { String answer = ""; String[] split = s.split(""); int cnt = 0; for (int i = 0; i 오늘 문제는 " 이상한 문자 만들기 "이다.이번 문제..

문제 : https://www.acmicpc.net/problem/1373 문제. 풀이. import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;import java.math.BigInteger;public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String str = br.readLine(); BigIntege..

https://school.programmers.co.kr/learn/courses/30/lessons/147355 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr 문제. 풀이. class Solution { public int solution(String t, String p) { int answer = 0; for(int i = 0; i 오늘 문제는 "크기가 작은 부분 문자열" 문제다.두 번 시도 끝에 푼 문제... 두 번 전부다 런타임 에러가 났는데 그 이유에 대해 먼저 설명해보려 ..

https://school.programmers.co.kr/learn/courses/30/lessons/68935 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr 문제. 풀이. class Solution { public int solution(int n) { String res = Integer.toString(n, 3); String reverse = new StringBuilder(res).reverse().toString(); int answer = Integer.parseIn..

문제 : https://www.acmicpc.net/problem/29614 문제. 풀이. import java.text.DecimalFormat;import java.util.Scanner;public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String str = sc.nextLine(); double sum = 0.0; int cnt = 0; for (int i = 0; i 오늘 문제는 백준의 스페셜 저지 " 학점계산프로그램 " 문제이다.제출 비율이 낮은 문제였고 그만큼 구글링을 해도 잘 ..

문제 : https://www.acmicpc.net/problem/10093 문제. 풀이. public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); long a = sc.nextLong(); long b = sc.nextLong(); if (a > b){ long temp = a; a = b; b = temp; } if (a == b) { System.out.println(a - b); }..

문제 : https://www.acmicpc.net/problem/1977 문제. 풀이. public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int m = sc.nextInt(); int n = sc.nextInt(); sc.close(); int sum = 0; int min = Integer.MAX_VALUE; for (int i = 1; i 오늘 문제는 " 완전제곱수 " 문제다.우선 완전제곱 이란 어떤 자연수의 제곱을 말한다. 이번 문제는 m, n의 입력..