0_0_15577479_31746.cpp:2:7: error: 'll' does not name a type
const ll mod = 1000000007;
^
0_0_15577479_31746.cpp:3:1: error: 'll' does not name a type
ll fac[N+5], pf[N+5];
^
0_0_15577479_31746.cpp:5:8: error: 'll' does not name a type
inline ll fpow(ll x, int n){
^
0_0_15577479_31746.cpp:15:8: error: 'll' does not name a type
inline ll C(ll n, ll m){
^
0_0_15577479_31746.cpp: In function 'int main()':
0_0_15577479_31746.cpp:20:27: error: 'stdout' was not declared in this scope
freopen("out.txt","w",stdout);
^
0_0_15577479_31746.cpp:20:33: error: 'freopen' was not declared in this scope
freopen("out.txt","w",stdout);
^
0_0_15577479_31746.cpp:21:5: error: 'fac' was not declared in this scope
fac[0] = 1ll;
^
0_0_15577479_31746.cpp:22:47: error: 'mod' was not declared in this scope
for(int i=1; i<=N; i++) fac[i]=fac[i-1]*i%mod;
^
0_0_15577479_31746.cpp:24:9: error: 'pf' was not declared in this scope
pf[i]=fpow(fac[i], mod-2);
^
0_0_15577479_31746.cpp:24:28: error: 'mod' was not declared in this scope
pf[i]=fpow(fac[i], mod-2);
^
0_0_15577479_31746.cpp:24:33: error: 'fpow' was not declared in this scope
pf[i]=fpow(fac[i], mod-2);
^
0_0_15577479_31746.cpp:27:13: error: 'cout' was not declared in this scope
cout<<C(i,j)<<" ";
^
0_0_15577479_31746.cpp:27:24: error: 'C' was not declared in this scope
cout<<C(i,j)<<" ";
^
0_0_15577479_31746.cpp:28:9: error: 'cout' was not declared in this scope
cout<<endl;
^
0_0_15577479_31746.cpp:28:15: error: 'endl' was not declared in this scope
cout<<endl;
^
|