[Java] PCCP 모의고사 1회 외톨이 알파벳 : https://champcoder.tistory.com/80
[Java] PCCP 모의고사 1회 외톨이 알파벳
import java.util.*; public class PccpTest1_1 { // PCCP 모의고사 1회 1번 외톨이 알파벳 public static String solution(String input_string) { String answer = ""; char tempChar; int tempCnt = 0; int repeatCnt = 0; Queue q = new LinkedList(); HashMa
champcoder.tistory.com
[Java] PCCP 모의고사 1회 체육대회 : https://champcoder.tistory.com/84
[Java] PCCP 모의고사 1회 체육대회
public class PccpTest1_2 { // PCCP 모의고사 1회 2번 체육대회 public static int[][] studentAbility; public static int studentCnt = 0; public static int sportsCnt = 0; public static int[] exceptCmbMax; public static int getMaxAbility(int studentCmb
champcoder.tistory.com
[Java] PCCP 모의고사 1회 유전법칙 : https://champcoder.tistory.com/86
[Java] PCCP 모의고사 1회 유전법칙
public class PccpTest1_3 { // PCCP 모의고사 1회 3번 유전법칙 public static String solve(int generation, long number) { long upperCaseLastNum = 0; long centerGroupLastNum = 0; String strRoot = "Rr"; long tempNum = 0; if (generation == 1) { return
champcoder.tistory.com
[Java] PCCP 모의고사 1회 운영체제 : https://champcoder.tistory.com/91
[Java] PCCP 모의고사 1회 운영체제
import java.util.PriorityQueue; public class PccpTest1_4 { // PCCP 모의고사 1회 4번 운영체제 public static long[] solution(int[][] program) { long[] answer = {}; long callTime = 0; // OS 호출 시각 int runningTime = 0; // OS 수행 시간 long
champcoder.tistory.com
프로그래머스 PCCP 모의고사 문제 풀이 Java 소스 코드
'Java > PCCP' 카테고리의 다른 글
[Java] PCCP 모의고사 1회 운영체제 (2) | 2022.09.29 |
---|---|
[Java] PCCP 모의고사 1회 유전법칙 (0) | 2022.09.20 |
[Java] PCCP 모의고사 1회 체육대회 (0) | 2022.09.17 |
[Java] PCCP 모의고사 1회 외톨이 알파벳 (0) | 2022.09.15 |