#include <iostream>
#include <algorithm>
using namespace std;
long long p[101];
int main() {
p[0] = 1;
p[1] = 1;
p[2] = 1;
p[3] = 2;
p[4] = 2;
for (int i = 5; i < 100; i++) {
p[i] = p[i - 5] + p[i - 1];
}
int testcase;
cin >> testcase;
while (testcase > 0) {
testcase--;
int n = 0;
cin >> n;
cout << p[n - 1] << endl;
}
}
P[n] = P[n-5] + P[n-1]
'코딩 > 알고리즘' 카테고리의 다른 글
백준 9252 LCS2 (0) | 2017.05.27 |
---|---|
백준 1932 숫자삼각형 (0) | 2017.05.27 |
백준 1912 연속합 (0) | 2017.05.27 |
백준 2965 캥거루 세마리 (0) | 2017.05.27 |
백준 11066 파일 합치기 (0) | 2017.05.25 |