https://www.acmicpc.net/problem/10886
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int N = Integer.parseInt(br.readLine());
int notCute = 0;
int cute = 0;
for (int i = 0; i < N; i++) {
int opinion = Integer.parseInt(br.readLine());
if (opinion == 0) notCute++;
else cute++;
}
if (notCute > cute) System.out.println("Junhee is not cute!");
else System.out.println("Junhee is cute!");
}
}
'알고리즘 > 백준' 카테고리의 다른 글
백준 2476 주사위 게임 (0) | 2022.12.09 |
---|---|
백준 2965 캥거루 세마리 (0) | 2022.12.09 |
백준 4504 배수 찾기 (0) | 2022.12.09 |
백준 2959 거북이 (0) | 2022.12.09 |
백준 25372 성택이의 은밀한 비밀번호 (0) | 2022.12.09 |