0_0_23634606_23292.cpp:20:9: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_23634606_23292.cpp:21:9: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_23634606_23292.cpp:22:9: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_23634606_23292.cpp: In function 'void gao(int, int)':
0_0_23634606_23292.cpp:30:18: error: 'sqrt' was not declared in this scope
int lim=sqrt(2*n);
^
0_0_23634606_23292.cpp:33:27: error: 'min' was not declared in this scope
for(int j=1;j<=min(i,lim);++j){
^
0_0_23634606_23292.cpp:24:12: error: '__int64' was not declared in this scope
#define LL __int64
^
0_0_23634606_23292.cpp:34:15: note: in expansion of macro 'LL'
dp[i][j]=((LL)dp[i-j][j-1]+dp[i-j][j])%MOD;
^
0_0_23634606_23292.cpp:34:18: error: expected ')' before 'dp'
dp[i][j]=((LL)dp[i-j][j-1]+dp[i-j][j])%MOD;
^
0_0_23634606_23292.cpp:36:2: error: expected '}' at end of input
}
^
|