[알고리즘] 백준 - 9095 ( 1, 2, 3 더하기 ) / 자바
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int[] n = {1, 2, 4, 7, 13, 24, 44, 81, 149, 274};
// n[0] = 1;
// n[1] = 2;
// n[2] = 4;
//
// for(int i = 3 ; i < 10 ; i++) {
// n[i] = n[i-1] + n[i-2] + n[i-3];
// }
//
// System.out.println(Arrays.toString(n));
int TC = Integer.parseInt(br.readLine());
for(int i = 0 ; i<TC ; i++) {
int N = Integer.parseInt(br.readLine());
System.out.println(n[N-1]);
}
}
}
Author And Source
이 문제에 관하여([알고리즘] 백준 - 9095 ( 1, 2, 3 더하기 ) / 자바), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@cheal3/알고리즘-백준-9095-1-2-3-더하기-자바저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)