SWEA(JAVA) 풀이/D2

SWEA[D2] (JAVA) 1986번 지그재그 숫자 풀이

개발윗미 2022. 8. 1. 14:31

Java으로 구현한 1986번 지그재그 숫자 문제 풀이입니다.

 

https://swexpertacademy.com/main/code/problem/problemDetail.do?problemLevel=2&contestProbId=AV5PxmBqAe8DFAUq&categoryId=AV5PxmBqAe8DFAUq&categoryType=CODE&problemTitle=&orderBy=FIRST_REG_DATETIME&selectCodeLang=PYTHON&select-1=2&pageSize=10&pageIndex=1 

 

SW Expert Academy

SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!

swexpertacademy.com


import java.util.*;

class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int t = sc.nextInt();
		
		for (int tc=1; tc<=t; tc++) {
			int n = sc.nextInt();
			int result = 1;
			for (int i=2; i<=n; i++) {
				if (i % 2 == 0) {
					result -= i;
				} else {
					result += i;
				}
			}
			
			System.out.println("#" + tc + " " + result);
		}
	}
}

 

1. 각 테스트 케이스마다 result를 1로 초기화한다.

 

2. 2부터 n까지 숫자를 각각 확인하여 그 값이 짝수라면 result에서 해당 값을 빼고, 홀수라면 해당 값을 더한다.

 

3. 최종적으로 해당 테스트 케이스 번호와 함께 result 값을 출력한다.