728x90
반응형
https://www.acmicpc.net/problem/25757
메이플스토리의 미니게임 중 윷놀이, 같은 그림 찾기, 원카드를 생각하면서 출제한 문제입니다.
참가신청한 사람들의 이름을 중복제거하여 저장 후, 선택한 게임에 따른 플레이 가능한 사람 수를 판별하면 되는 문제입니다.
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.HashSet;
import java.util.StringTokenizer;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
int n = Integer.parseInt(st.nextToken());
char kind = st.nextToken().charAt(0);
HashSet<String> set = new HashSet<>();
while(n --> 0) {
set.add(br.readLine());
}
System.out.print(print(kind, set.size()));
}
public static int print(char kind, int size) {
return kind == 'Y' ? size : kind == 'F' ? size / 2 : size / 3;
}
}
728x90
반응형
'백준 > 출제한 문제들' 카테고리의 다른 글
[백준] 26068번 : 치킨댄스를 추는 곰곰이를 본 임스 2 (0) | 2022.12.01 |
---|---|
[백준] 25822번 : 2000문제 푼 임스 (3) | 2022.10.25 |
[백준] 25756번 : 방어율 무시 계산하기 (0) | 2022.10.25 |
[백준] 25755번 : 거울반사 (0) | 2022.10.25 |
[백준] 25497번 : 기술 연계마스터 임스 (0) | 2022.10.25 |
댓글