https://school.programmers.co.kr/learn/courses/30/lessons/147355
1 ≤ p의 길이 ≤ 18 라서 Integer가 아니라 Long형
import java.util.*;
class Solution {
public int solution(String t, String p) {
int answer = 0;
String s= "";
for(int i =0; i<=t.length()-p.length();i++){
s = t.substring(i,i+p.length());
if(Long.parseLong(s) <= Long.parseLong(p)){
answer++;
}
}
return answer;
}
}