https://www.acmicpc.net/problem/10870
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int[] fi = new int[22];
fi[0] = 0;
fi[1] = 1;
for (int i = 2; i < 21; i++) {
fi[i] = fi[i - 1] + fi[i - 2];
}
int t = sc.nextInt();
System.out.println(fi[t]);
}
}
'자바 > 알고리즘' 카테고리의 다른 글
프로그래머스 lv1 : 완주하지 못한 선수 (0) | 2021.12.28 |
---|---|
프로그래머스 lv1 : 완주하지 못한 선수 (0) | 2021.12.28 |
[카카오 인턴] 키패드 누르기 (0) | 2021.12.28 |
프로그래머스 lv1: 로또의 최고 순위와 최저 순위 (0) | 2021.12.28 |
백준 9095번 1,2,3 더하기 (0) | 2021.07.23 |