자두의 데브로그

[자바] 프로그래머스 크기가 작은 부분 문자열 본문

코딩테스트/Java

[자바] 프로그래머스 크기가 작은 부분 문자열

왕자두 2024. 10. 20. 23:11

https://school.programmers.co.kr/learn/courses/30/lessons/147355

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

 

이걸... 틀리다니 ...

틀린 이유는 사실 int로 선언해서 그렇고, long으로 풀면 바로 해결!

 

*언제 int를, 언제 long을 사용해야되는지 다시 공부해보자!

import java.util.*;

class Solution {
    public int solution(String t, String p) {
        int answer = 0;
        int p_length = p.length();

        for(int i = 0; i < t.length()-p_length+1; i++){
            if(Long.parseLong(p) >= Long.parseLong(t.substring(i, i+p_length))){
                answer++;
            }
        }
    
        return answer;
    }
}