0_0_30539924_21006.cpp:3:7: error: 'll' does not name a type
const ll maxn=100005;
^
0_0_30539924_21006.cpp:4:1: error: 'll' does not name a type
ll pri[maxn];
^
0_0_30539924_21006.cpp:5:1: error: 'll' does not name a type
ll su[maxn];
^
0_0_30539924_21006.cpp:6:1: error: 'll' does not name a type
ll sum;
^
0_0_30539924_21006.cpp: In function 'void ini()':
0_0_30539924_21006.cpp:11:19: error: 'maxn' was not declared in this scope
for(ll i=1;i<=maxn-1;i++)
^
0_0_30539924_21006.cpp:13:9: error: 'su' was not declared in this scope
su[i]=1;
^
0_0_30539924_21006.cpp:15:5: error: 'sum' was not declared in this scope
sum=1;
^
0_0_30539924_21006.cpp:16:5: error: 'pri' was not declared in this scope
pri[1]=2;
^
0_0_30539924_21006.cpp:17:19: error: 'maxn' was not declared in this scope
for(ll i=2;i<=maxn-1;i++)
^
0_0_30539924_21006.cpp:19:12: error: 'su' was not declared in this scope
if(su[i]==1)
^
0_0_30539924_21006.cpp:27:17: error: 'su' was not declared in this scope
su[i*pri[j]]=0;
^
0_0_30539924_21006.cpp:32:17: error: 'su' was not declared in this scope
su[i*pri[j]]=0;
^
0_0_30539924_21006.cpp: In function 'long long int ol(long long int)':
0_0_30539924_21006.cpp:46:19: error: 'sum' was not declared in this scope
for(ll i=1;i<=sum;i++)
^
0_0_30539924_21006.cpp:48:17: error: 'pri' was not declared in this scope
while(n%pri[i]==0)
^
|