Notice
Recent Posts
Recent Comments
Link
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
Tags
more
Archives
Today
Total
관리 메뉴

코드와이

[SW Expert Academy] 3376. 파도반 수열 본문

SW_Expert

[SW Expert Academy] 3376. 파도반 수열

코드와이 2021. 2. 4. 17:45

 

문제링크

swexpertacademy.com/main/code/problem/problemDetail.do?problemLevel=3&contestProbId=AWD3Y27q3QIDFAUZ&categoryId=AWD3Y27q3QIDFAUZ&categoryType=CODE&problemTitle=&orderBy=PASS_RATE&selectCodeLang=JAVA&select-1=3&pageSize=10&pageIndex=9

 

SW Expert Academy

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

swexpertacademy.com

 

package D3;

import java.util.Scanner;

public class 파도수열 {
	
	public static void main(String[] args){

		Scanner sc = new Scanner(System.in);
		
		int T = sc.nextInt();
		
		StringBuilder sb = new StringBuilder("");
		
		long[] arr = new long[100];
		arr[0] = 1;
		arr[1] = 1;
		arr[2] = 1;
		for(int i = 3 ; i < 100 ; i++) {
			arr[i] = arr[i-2] + arr[i-3];
		}
		
		for (int tc = 1; tc <= T; tc++) {
			
			int N = sc.nextInt();
			
			sb.append("#" + tc + " ");
			long ans = arr[N-1];
			
			sb.append(ans);
			System.out.println(sb);
			sb.setLength(0);
		}
		sc.close();
	}
}