반응형
250x250
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- SSAFY 8기
- 백준
- 삼성청년sw아카데미
- DenseNet
- 이코테
- dfs
- 코딩 교육
- SSAFY
- 프로그래머스 고득점 kit
- DP
- 알고리즘
- 유니온 파인드
- SWEA
- 전이학습
- SSAFYcial
- 백준7576 bfs
- ssafy 7기 합격
- React
- git
- ssafy 7기
- 웹 표준 사이트 만들기
- pytorch
- 싸피 7기 입학식
- bfs
- ssafy 7기 교수님
- 프로그래머스
- 코딩교육
- Learning
- SSAFY 입학식
- 삼성 청년 SW 아카데미
Archives
- Today
- Total
개미의 개열시미 프로그래밍
[알고리즘] 백준1543 문서검색 - 자바 본문
728x90
반응형
https://www.acmicpc.net/problem/1543
자바 익숙해지기 2주 차.. 월요일 시험을 위해 쉬운 거여도 한번 풀어보기!
[풀이 코드]
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner sc = new Scanner(System.in);
String str = sc.nextLine();
String s = sc.nextLine();
int cnt = 0;
for(int i=0; i <= str.length()-s.length(); i++) {
if(str.substring(i, i+s.length()).equals(s)) {
cnt++;
i+=s.length()-1;
}
}
System.out.println(cnt);
}
}
728x90
반응형
'알고리즘 > 그리디 & 구현' 카테고리의 다른 글
[알고리즘] 백준16935 배열돌리기3 - 자바 (0) | 2022.02.13 |
---|---|
[알고리즘] 백준16927 배열돌리기2 - 자바 (0) | 2022.02.12 |
[알고리즘]백준22856 트리 순회 - 파이썬 (0) | 2021.12.11 |
[알고리즘] 백준7490 0만들기 - 파이썬 (0) | 2021.11.17 |
[알고리즘] 백준5397 키로거 - 파이썬 (0) | 2021.11.04 |
Comments