분류 전체보기

    [프로그래머스, 12913] 땅따먹기 (java)

    https://school.programmers.co.kr/learn/courses/30/lessons/12913 프로그래머스SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr메모리: 88.3 MB, 시간: 29.29 ms사용 알고리즘: 다이나믹 프로그래밍class Solution { int solution(int[][] land) { int N = land.length; int[][] dp = new int[N][4]; dp[0] = land[0]; for(int i = 1; i

    [프로그래머스, 12930] 이상한 문자 만들기 (java)

    https://school.programmers.co.kr/learn/courses/30/lessons/12930 프로그래머스SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr메모리: 72.6 MB, 시간: 0.11 ms사용 알고리즘: 문자열import java.util.*;class Solution { public String solution(String s) { // 일단 다 소문자로 변경 s = s.toLowerCase(); StringBuilder answer = new StringBuilder(); int index = 0; ..

    [프로그래머스, 17680] [1차] 캐시 (java)

    https://school.programmers.co.kr/learn/courses/30/lessons/17680 프로그래머스SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr 메모리: 108 MB, 시간: 65.03 ms사용 알고리즘: 문자열, 자료구조import java.util.*;class Solution { public int solution(int cacheSize, String[] cities) { int answer = 0; // 캐시 정보 Deque cache = new ArrayDeque(); for(String ci..

    [프로그래머스, 147355] 크기가 작은 부분문자열 (java)

    https://school.programmers.co.kr/learn/courses/30/lessons/147355 프로그래머스SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr메모리: 88.1 MB, 시간: 1.10 ms사용 알고리즘: 문자열class Solution { public int solution(String t, String p) { long numP = Long.parseLong(p); // 앞에서부터 p의 길이 - 1 만큼 자른 수 구하기 long num = 0; for(int i = 0; i

    [백준, BOJ 10610] 30 (java)

    https://www.acmicpc.net/problem/10610메모리: 16,200 KB , 시간: 160 ms사용 알고리즘: 그리디 알고리즘, 수학, 정수론, 문자열 import java.io.BufferedReader;import java.io.InputStreamReader;public class Main { public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String N = br.readLine(); // 3의 배수는 자릿수를 모두 더했을 때의 수도 3의 배수 ..

    [백준, BOJ 3758] KCPC (java)

    https://www.acmicpc.net/problem/3758메모리: 35,844 KB , 시간: 324 ms사용 알고리즘: 구현, 정렬 import java.io.BufferedReader;import java.io.InputStreamReader;import java.util.Arrays;import java.util.StringTokenizer;public class Main { public static void main(String[] args) throws Exception{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st; Stri..

    [프로그래머스, 140108] 문자열 나누기 (java)

    https://school.programmers.co.kr/learn/courses/30/lessons/140108 프로그래머스SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr메모리: 77.2 MB, 시간: 8.21 ms사용 알고리즘: 문자열class Solution { public int solution(String s) { int answer = 0; int cnt1 = 0, cnt2 = 0; char x = 'A'; for(int i = 0; i

    [프로그래머스, 181847] 0 떼기 (java)

    https://school.programmers.co.kr/learn/courses/30/lessons/181847 프로그래머스SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr메모리: 90.1 MB, 시간: 0.02 ms사용 알고리즘: 문자열class Solution { public String solution(String n_str) { int start = 0; for(int i = 0; i

    [프로그래머스, 161990] 바탕화면 정리 (java)

    https://school.programmers.co.kr/learn/courses/30/lessons/161990 프로그래머스SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr메모리: 81.6 MB, 시간: 0.19 ms사용 알고리즘: 구현class Solution { public int[] solution(String[] wallpaper) { // 바탕화면 정보 int N = wallpaper.length; int M = wallpaper[0].length(); int[] answer = new int[] {-1, -1, -1, ..

    [프로그래머스, 172928] 공원 산책 (java)

    https://school.programmers.co.kr/learn/courses/30/lessons/172928 프로그래머스SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr메모리: 92.6 MB, 시간: 0.20 ms사용 알고리즘: 구현class Solution { String[] park; int N, M; public int[] solution(String[] park, String[] routes) { // 공원 정보 this.park = park; N = park.length; M = park[0].length(..