본문 바로가기

Computer Science

파스칼의 삼각형

https://www.acmicpc.net/problem/11051

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
31
#include <iostream>
#include <vector>
#define MAXX 1001
using namespace std;
 
int pascal[MAXX][MAXX];
 
int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(0);
 
    int n, k;
    cin >> n >> k;
 
    for (int i = 0; i <= n; i++) {
        for (int j = 0; j <= i; j++) {
            if (i == 0 || j == 0) {
                pascal[i][j] = 1;
            }
            else {
                pascal[i][j] += pascal[i - 1][j - 1]%10007 + pascal[i - 1][j]%10007;
            }
        }
    }
 
 
    cout << pascal[n][k]%10007 << '\n';
    return 0;
}
 
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter