728x90
https://www.acmicpc.net/problem/18937
소스코드
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class Main {
public static void main(String[] args) throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
br.readLine();
StringTokenizer st = new StringTokenizer(br.readLine());
int n = 0;
while(st.hasMoreTokens()) {
n ^= (Integer.parseInt(st.nextToken()) - 2);
}
String s = br.readLine();
System.out.print(n != 0 ? s : s.equals("Whiteking") ? "Blackking" : "Whiteking");
}
}
728x90
'백준 > 15001 - 20000' 카테고리의 다른 글
[백준] 17298번 : 오큰수(JAVA) (0) | 2021.08.17 |
---|---|
[백준] 18129번 : 이상한 암호코드(JAVA) (0) | 2021.08.15 |
[백준] 15926번 : 현욱은 괄호왕이야!!(JAVA) (0) | 2021.07.30 |
[백준] 15904번 : UCPC는 무엇의 약자일까?(JAVA) (0) | 2021.07.21 |
[백준] 19532번 : 수학은 비대면강의입니다.(JAVA) (0) | 2021.07.20 |
댓글