https://www.acmicpc.net/problem/2857
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
boolean found = false;
List<Integer> list = new ArrayList<>();
for (int i = 1; i <= 5; i++) {
String s = br.readLine();
if (s.contains("FBI")){
found = true;
list.add(i);
}
}
StringBuilder sb = new StringBuilder();
if (found) {
for (Integer i : list) {
sb.append(i).append(" ");
}
}
else sb.append("HE GOT AWAY!");
System.out.println(sb);
}
}
'알고리즘 > 백준' 카테고리의 다른 글
백준 3059 등장하지 않는 문자의 합 (0) | 2022.12.07 |
---|---|
백준 1247 부호 (0) | 2022.12.07 |
백준 9295 주사위 (0) | 2022.12.07 |
백준 2783 삼각김밥 (0) | 2022.12.07 |
백준 14656 조교는 새디스트야!! (0) | 2022.12.06 |