Notice
Recent Posts
Recent Comments
Link
삐까냥의 파도타기
1152번) 단어의 개수 본문
문제 출처 : https://www.acmicpc.net/problem/1152
현재 기준으로 정답률이 20.785%
왜 그럴까 생각해봤는데,
앞, 뒤에 존재하는 띄어쓰기를 생각해야하고
중복을 생각하여 코딩했는데, 중복은 신경 쓰지 않아야 하네요.
import java.util.Scanner; public class Q1152 { public static void main(String[] args) { int result = 0;
Scanner sc = new Scanner(System.in); String string = sc.nextLine(); String[] temp = string.split(" ");
for ( int i = 0 ; i < temp.length; i++ ) { if ( !temp[i].equals("")) { result += 1; } } System.out.println(result); } } |
'코딩 > 백준 알고리즘' 카테고리의 다른 글
10809번) 알파벳 찾기 (0) | 2017.11.11 |
---|---|
11654번) 아스키 코드 (0) | 2017.11.11 |
14890번) 경사로 (0) | 2017.10.29 |
14889번) 스타트와 링크 (0) | 2017.10.28 |
1507번) 궁금한 민호 (0) | 2017.10.28 |