0_0_32322401_19241.cpp:9:9: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_32322401_19241.cpp:10:9: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_32322401_19241.cpp:11:9: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_32322401_19241.cpp:12:9: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_32322401_19241.cpp:13:9: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_32322401_19241.cpp:16:12: error: '__int64' does not name a type
#define LL __int64
^
0_0_32322401_19241.cpp:17:1: note: in expansion of macro 'LL'
LL a[N];
^
0_0_32322401_19241.cpp:16:12: error: '__int64' does not name a type
#define LL __int64
^
0_0_32322401_19241.cpp:19:1: note: in expansion of macro 'LL'
LL k;
^
0_0_32322401_19241.cpp:16:12: error: '__int64' does not name a type
#define LL __int64
^
0_0_32322401_19241.cpp:21:1: note: in expansion of macro 'LL'
LL key[HASH_MOD], val[HASH_MOD];
^
0_0_32322401_19241.cpp:16:12: error: '__int64' does not name a type
#define LL __int64
^
0_0_32322401_19241.cpp:29:5: note: in expansion of macro 'LL'
LL insert(LL x, LL y){
^
0_0_32322401_19241.cpp:16:12: error: '__int64' does not name a type
#define LL __int64
^
0_0_32322401_19241.cpp:36:5: note: in expansion of macro 'LL'
LL find(LL x){
^
0_0_32322401_19241.cpp: In member function 'void Hash::init()':
0_0_32322401_19241.cpp:26:38: error: 'memset' was not declared in this scope
memset(head, -1, sizeof(head));
^
0_0_32322401_19241.cpp: At global scope:
0_0_32322401_19241.cpp:16:12: error: '__int64' does not name a type
#define LL __int64
^
0_0_32322401_19241.cpp:45:1: note: in expansion of macro 'LL'
LL sum[N];
^
0_0_32322401_19241.cpp: In function 'bool gao()':
0_0_32322401_19241.cpp:16:12: error: '__int64' was not declared in this scope
#define LL __int64
^
0_0_32322401_19241.cpp:48:5: note: in expansion of macro 'LL'
LL f=-1;
^
0_0_32322401_19241.cpp:49:2: error: 'sum' was not declared in this scope
sum[0]=a[0];
^
0_0_32322401_19241.cpp:49:9: error: 'a' was not declared in this scope
sum[0]=a[0];
^
0_0_32322401_19241.cpp:53:9: error: 'c' was not declared in this scope
if (c=='-') sign=-1,c=getchar();
^
0_0_32322401_19241.cpp:53:17: error: 'sign' was not declared in this scope
if (c=='-') sign=-1,c=getchar();
^
0_0_32322401_19241.cpp:53:35: error: 'getchar' was not declared in this scope
if (c=='-') sign=-1,c=getchar();
^
0_0_32322401_19241.cpp:54:12: error: 'c' was not declared in this scope
while (c>='0'&&c<='9'){
^
0_0_32322401_19241.cpp:55:9: error: 'ret' was not declared in this scope
ret=(ret<<3)+(ret<<1)+c-'0';
^
0_0_32322401_19241.cpp:56:19: error: 'getchar' was not declared in this scope
c=getchar();
^
0_0_32322401_19241.cpp:58:12: error: 'ret' was not declared in this scope
return ret*sign;
^
0_0_32322401_19241.cpp:58:16: error: 'sign' was not declared in this scope
return ret*sign;
^
0_0_32322401_19241.cpp:61:11: error: a function-definition is not allowed here before '{' token
int main(){
^
0_0_32322401_19241.cpp:68:21: error: expected '}' at end of input
for(int i=0;i
^
0_0_32322401_19241.cpp:68:21: error: expected '}' at end of input
|