0_0_27011603_17091.cpp:21:31: error: expected unqualified-id before '/' token
ll f[ANS_SIZE],nf[ANS_SIZE]; /
^
0_0_27011603_17091.cpp: In function 'void initprime()':
0_0_27011603_17091.cpp:27:5: error: 'pcount' was not declared in this scope
pcount = 0;
^
0_0_27011603_17091.cpp:30:25: error: 'plist' was not declared in this scope
if(!isPrime[i]) plist[pcount++] = i;
^
0_0_27011603_17091.cpp:31:38: error: 'plist' was not declared in this scope
for(int j = 0; j<pcount && i*plist[j]<MAXN; j++)
^
0_0_27011603_17091.cpp: In function 'int prime_factor(long long unsigned int)':
0_0_27011603_17091.cpp:42:29: error: 'plist' was not declared in this scope
for(int i = 0; n > 1 && plist[i] <= n2 && i < pcount; ++i)
^
0_0_27011603_17091.cpp:42:51: error: 'pcount' was not declared in this scope
for(int i = 0; n > 1 && plist[i] <= n2 && i < pcount; ++i)
^
|