-
Notifications
You must be signed in to change notification settings - Fork 67
/
AGPC01G.cpp
50 lines (43 loc) · 1022 Bytes
/
AGPC01G.cpp
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <cstring>
#include <numeric>
#include <algorithm>
#include <functional>
#include <vector>
#include <queue>
#include <stack>
#include <set>
#include <map>
//#include <unordered_map>
#include <list>
#include <bitset>
#include <utility>
#include <cassert>
#include <iomanip>
#include <ctime>
#include <fstream>
#include <bitset>
using namespace std;
const int me = 100025;
const int mod = 1000000007;
int T, N;
int a[me];
int main(int argc, const char * argv[]) {
//ios_base::sync_with_stdio(0);
//cin.tie(0);
//freopen("input.txt", "r", stdin);
//freopen("output.txt", "w", stdout);
// found using http://oeis.org/search?q=1%2C+2%2C+4%2C+10&language=english&go=Search
a[0] = 1, a[1] = 1;
for(int i = 2; i < me; i ++)
a[i] = (a[i - 1] + 1LL * (i - 1) * a[i - 2] % mod) % mod;
scanf("%d", &T);
while(T --){
scanf("%d", &N);
printf("%d\n", a[N]);
}
return 0;
}