[D3] 통역사 성경이 - 7675
성능 요약
메모리: 32,644 KB, 시간: 194 ms, 코드길이: 906 Bytes
제출 일자
2023-11-02 09:33
출처: SW Expert Academy, https://swexpertacademy.com/main/code/problem/problemList.do
import java.util.Scanner;
class Solution {
public static void main(String args[]) throws Exception {
Scanner sc = new Scanner(System.in);
int T =sc.nextInt();
for(int tc = 1; tc <= T; tc++)
{
int n = sc.nextInt();
StringBuilder sb = new StringBuilder();
int count = 0;
int check = 0;
while(count != n){
String word = sc.next();
if(Character.isUpperCase(word.charAt(0)) && word.substring(1).toLowerCase().replaceAll("[0-9]","").equals(word.substring(1))){
check++;
}
if(word.contains("!") || word.contains("?") || word.contains(".")){
count++;
sb.append(check).append(" ");
check = 0;
}
}
System.out.println("#" + tc + " "+ sb.toString());
}
}
}
'알고리즘 - SWEA > D3' 카테고리의 다른 글
[SW expert Academy] SWEA 8840번 아바바바 자바(Java) (0) | 2023.11.02 |
---|---|
[SW expert Academy] SWEA 8104번 조 만들기 자바(Java) (0) | 2023.11.02 |
[SW expert Academy] SWEA 8338번 계산기 자바(Java) (0) | 2023.11.02 |
[SW expert Academy] SWEA 4789번 성공적인 공연 기획 자바(Java) (1) | 2023.11.02 |
[SW expert Academy] SWEA 3456번 직사각형 길이 찾기 자바(Java) (1) | 2023.11.01 |