0_0_32290427_20612.cpp:2:7: error: '__int64' does not name a type
const __int64 mod = 1000000007;
^
0_0_32290427_20612.cpp:4:1: error: '__int64' does not name a type
__int64 dp[N][N], CC[N][N];
^
0_0_32290427_20612.cpp:7:8: error: '__int64' does not name a type
inline __int64 log2(__int64 n)
^
0_0_32290427_20612.cpp:17:1: error: '__int64' does not name a type
__int64 Extend_euclid(__int64 a,__int64 b,__int64 &x,__int64 &y)
^
0_0_32290427_20612.cpp:35:1: error: '__int64' does not name a type
__int64 Bignum_Div(__int64 a,__int64 b,__int64 mod)
^
0_0_32290427_20612.cpp:44:1: error: 'int64' does not name a type
int64 ice(int64 x,int64 y,int64 mod)
^
0_0_32290427_20612.cpp:56:1: error: 'int64' does not name a type
int64 cnm(int64 x,int64 y,int64 mod)
^
0_0_32290427_20612.cpp:67:1: error: '__int64' does not name a type
__int64 lucas(__int64 x,__int64 y,__int64 mod)
^
0_0_32290427_20612.cpp:74:1: error: '__int64' does not name a type
__int64 C(int n, int m)
^
0_0_32290427_20612.cpp:89:1: error: '__int64' does not name a type
__int64 dfs(int64 n, int64 d)
^
0_0_32290427_20612.cpp: In function 'int main()':
0_0_32290427_20612.cpp:114:12: error: 'dp' was not declared in this scope
memset(dp, -1, sizeof(dp));
^
0_0_32290427_20612.cpp:114:30: error: 'memset' was not declared in this scope
memset(dp, -1, sizeof(dp));
^
0_0_32290427_20612.cpp:115:12: error: 'CC' was not declared in this scope
memset(CC, -1, sizeof(CC));
^
0_0_32290427_20612.cpp:116:5: error: '__int64' was not declared in this scope
__int64 ii, j;
^
0_0_32290427_20612.cpp:117:18: error: 'scanf' was not declared in this scope
scanf("%d",&t);
^
0_0_32290427_20612.cpp:121:52: error: 'dfs' was not declared in this scope
printf("Case #%d: %I64d\n", ++tt, (dfs(n, d)-dfs(n,d-1)+mod)%mod);
^
0_0_32290427_20612.cpp:121:65: error: 'mod' was not declared in this scope
printf("Case #%d: %I64d\n", ++tt, (dfs(n, d)-dfs(n,d-1)+mod)%mod);
^
0_0_32290427_20612.cpp:121:73: error: 'printf' was not declared in this scope
printf("Case #%d: %I64d\n", ++tt, (dfs(n, d)-dfs(n,d-1)+mod)%mod);
^
|