본문 바로가기

Java/프로그래머스

(232)
[JAVA] 프로그래머스 - 합성수 찾기 https://school.programmers.co.kr/learn/courses/30/lessons/120846 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr   정답 class Solution { public int isCheck(int n) { int count = 0; for(int i=1; i2)?1:0;} public int solution(int n) { int answer = 0; for(int i=1; i  다른 사람의 풀이  class Solution { ..
[JAVA] 프로그래머스 - 주사위의 개수 https://school.programmers.co.kr/learn/courses/30/lessons/120845 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr    정답  class Solution { public int solution(int[] box, int n) { int answer = 0; answer = (box[0]/n) * (box[1]/n)*(box[2]/n); return answer; }}
[JAVA] 프로그래머스 - 배열 회전시키기 https://school.programmers.co.kr/learn/courses/30/lessons/120844 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr     정답  import java.util.ArrayList;class Solution { public int[] solution(int[] numbers, String direction) { ArrayListlist = new ArrayList(); for(int n : numbers) { list.add..
[JAVA] 프로그래머스 - 공 던지기 코딩테스트 연습 - 공 던지기 | 프로그래머스 스쿨 (programmers.co.kr) 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr     System.arraycopy 배열 복사   Syste.arraycopy(src,srcPos,dest,destPos,length) Object src- 복사하고자 하는 소스 int srcPos- 위의 원본 소스에서 어느 부분을 읽어올지 위치를 정함  Object dest- 복사할 소스, 복사하려는 대상  int destPos- 위의 복사본에서 자료를 받을 때, 어느 부분부터 쓸 것인지 시작 위치 int length- 원..
[JAVA] 프로그래머스 - 2차원으로 만들기 https://school.programmers.co.kr/learn/courses/30/lessons/120842 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr    정답  class Solution { public int[][] solution(int[] num_list, int n) { int[][] answer = new int[num_list.length/n][n]; int idx = 0; for(int i=0; i  다른 사람의 풀이  import java.util.Arrays;class S..
[JAVA] 프로그래머스 - 점의 위치 구하기 https://school.programmers.co.kr/learn/courses/30/lessons/120841 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr       정답  class Solution { public int solution(int[] dot) { int answer = 0; int x = dot[0]; int y = dot[1]; if(x>0 && y>0) { answer = 1; } else if(x0) { ..
[JAVA] 프로그래머스 - 구슬을 나누는 경우의 수 https://school.programmers.co.kr/learn/courses/30/lessons/120840 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr    정답  class Solution { static int combination(int n, int m) { if(m==0 || n==m) { return 1; } else { return combination(n-1,m-1)+ combi..
[JAVA] 프로그래머스 - 가위 바위 보 https://school.programmers.co.kr/learn/courses/30/lessons/120839 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr     정답  class Solution { public String solution(String rsp) { StringBuffer answer = new StringBuffer(); //가위 2, 바위 0, 보 5 for(int i=0; i