공부기록/SWEA

[SWEA] 14692번 통나무 자르기

메델 2023. 10. 21. 20:20
import java.util.Scanner;
public class Solution {
	
	public static void main(String[] args){
		
		Scanner kb = new Scanner(System.in);
		int count = 0;
		int TC = kb.nextInt();
		StringBuilder sb = new StringBuilder();
		
		for(int i=0; i<TC; i++) {
			sb.append("#").append(i+1).append(' ');
			int length = kb.nextInt();

			if(length%2==0) {
				sb.append("Alice");
			}else {
				sb.append("Bob");
			}
			
			sb.append('\n');
			
		}
		
		System.out.println(sb.toString());
		
		
	}

}

이게 왜 D3일까? 

짝수일 때 Alice가 이기고 홀수일 때 Bob이 이긴다 그것만 생각하면 된다.. 

'공부기록 > SWEA' 카테고리의 다른 글

[SWEA] 13218번 조별과제  (0) 2023.10.21
[SWEA] 2047번 신문 헤드라인  (0) 2023.10.21
[SWEA] 2027번 대각선 출력하기  (0) 2023.10.21
[SWEA] 1966번 숫자를 정렬하자  (0) 2023.10.20
[SWEA] 2072번 홀수만 더하기  (0) 2023.10.20