0_0_14011863_26587.cpp:6:12: error: '_int64' does not name a type
#define LL _int64
^
0_0_14011863_26587.cpp:8:1: note: in expansion of macro 'LL'
LL zu[10000*10+10]={0,1};
^
0_0_14011863_26587.cpp: In function 'int main()':
0_0_14011863_26587.cpp:6:12: error: '_int64' was not declared in this scope
#define LL _int64
^
0_0_14011863_26587.cpp:11:9: note: in expansion of macro 'LL'
for(LL i=2;i<=10000*10+1;i++)
^
0_0_14011863_26587.cpp:11:16: error: 'i' was not declared in this scope
for(LL i=2;i<=10000*10+1;i++)
^
0_0_14011863_26587.cpp:14:13: error: 'zu' was not declared in this scope
zu[i]=zu[i-1]+i*i*i;
^
0_0_14011863_26587.cpp:16:13: error: 'zu' was not declared in this scope
zu[i]=zu[i-1]+i;
^
0_0_14011863_26587.cpp:21:26: error: 'zu' was not declared in this scope
printf("%I64d\n",zu[T]);
^
|