BOJ 11726 c++

Algorithm / / 2020. 7. 15. 15:47

BOJ 11726 2×n 타일링

백준 11726


#include <bits/stdc++.h>
using namespace std;

int d[10004];

int main() {
    ios::sync_with_stdio(0);
    cin.tie(0);

    int n;
    cin >> n;
    if (n == 1) {
        cout << 1;
        return 0;
    }
    if (n == 2) {
        cout << 2;
        return 0;
    }
    d[1] = 1;
    d[2] = 2;
    for (int i = 3; i <= n; i++) {
        d[i] = (d[i - 1] + d[i - 2]) % 10007;
    }
    cout << d[n];
    return 0;
}

'Algorithm' 카테고리의 다른 글

BOJ 1149 c++  (0) 2020.07.15
BOJ 2579 c++  (0) 2020.07.15
BOJ 9663 c++  (0) 2020.07.14
BOJ 1182 c++  (0) 2020.07.14
BOJ 11728 c++  (0) 2020.07.14
  • 네이버 블러그 공유하기
  • 네이버 밴드에 공유하기
  • 페이스북 공유하기
  • 카카오스토리 공유하기
// custom