0_0_32865908_29590.cpp:9:9: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_32865908_29590.cpp:10:9: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_32865908_29590.cpp:12:12: error: '__int64' does not name a type
#define LL __int64
^
0_0_32865908_29590.cpp:15:1: note: in expansion of macro 'LL'
LL dp[N],fi[N];
^
0_0_32865908_29590.cpp:12:12: error: '__int64' does not name a type
#define LL __int64
^
0_0_32865908_29590.cpp:16:1: note: in expansion of macro 'LL'
LL five(LL x){ return (3*x*x-x)/2; }
^
0_0_32865908_29590.cpp: In function 'void wbxs()':
0_0_32865908_29590.cpp:19:5: error: 'dp' was not declared in this scope
dp[0]=1;
^
0_0_32865908_29590.cpp:22:9: error: 'fi' was not declared in this scope
fi[i+t]=five(i); //Q
^
0_0_32865908_29590.cpp:22:23: error: 'five' was not declared in this scope
fi[i+t]=five(i); //Q
^
0_0_32865908_29590.cpp:12:12: error: '__int64' was not declared in this scope
#define LL __int64
^
0_0_32865908_29590.cpp:26:13: note: in expansion of macro 'LL'
LL a=fi[j+t],b=fi[-j+t];
^
0_0_32865908_29590.cpp:27:16: error: 'a' was not declared in this scope
if(a>i && b>i) break;
^
0_0_32865908_29590.cpp:27:23: error: 'b' was not declared in this scope
if(a>i && b>i) break;
^
0_0_32865908_29590.cpp:28:16: error: 'a' was not declared in this scope
if(a<=i) dp[i]=(dp[i]+dp[i-a]*flag+MOD)%MOD; //p
^
0_0_32865908_29590.cpp:29:16: error: 'b' was not declared in this scope
if(b<=i) dp[i]=(dp[i]+dp[i-b]*flag+MOD)%MOD;
^
0_0_32865908_29590.cpp: In function 'int main()':
0_0_32865908_29590.cpp:37:18: error: 'scanf' was not declared in this scope
scanf("%d",&T);
^
0_0_32865908_29590.cpp:40:26: error: 'dp' was not declared in this scope
printf("%I64d\n",dp[n]);
^
0_0_32865908_29590.cpp:40:31: error: 'printf' was not declared in this scope
printf("%I64d\n",dp[n]);
^
|