0_0_22422291_22327.cpp:3:9: error: '_int64' does not name a type
typedef _int64 ll;
^
0_0_22422291_22327.cpp:4:1: error: 'll' does not name a type
ll a[maxn];
^
0_0_22422291_22327.cpp:5:1: error: 'll' does not name a type
ll pri;
^
0_0_22422291_22327.cpp:8:1: error: 'll' does not name a type
ll solve(ll x,ll mod)
^
0_0_22422291_22327.cpp: In function 'int main()':
0_0_22422291_22327.cpp:30:19: error: 'a' was not declared in this scope
scanf("%I64d",&a[k]);
^
0_0_22422291_22327.cpp:31:18: error: 'pri' was not declared in this scope
scanf("%I64d",&pri);
^
0_0_22422291_22327.cpp:32:3: error: 'll' was not declared in this scope
ll mm = pri*pri;
^
0_0_22422291_22327.cpp:33:10: error: expected ';' before 'i'
for(ll i = 0 ; i < pri ; i++)
^
0_0_22422291_22327.cpp:33:18: error: 'i' was not declared in this scope
for(ll i = 0 ; i < pri ; i++)
^
0_0_22422291_22327.cpp:35:7: error: expected ';' before 'xx'
ll xx = solve(i,pri);
^
0_0_22422291_22327.cpp:36:7: error: 'xx' was not declared in this scope
if(xx%pri==0)
^
0_0_22422291_22327.cpp:38:12: error: expected ';' before 'j'
for(ll j = i ; j < mm ; j+=pri)
^
0_0_22422291_22327.cpp:38:20: error: 'j' was not declared in this scope
for(ll j = i ; j < mm ; j+=pri)
^
0_0_22422291_22327.cpp:38:24: error: 'mm' was not declared in this scope
for(ll j = i ; j < mm ; j+=pri)
^
0_0_22422291_22327.cpp:40:9: error: expected ';' before 'ans'
ll ans = solve(j,pri);
^
0_0_22422291_22327.cpp:41:9: error: 'ans' was not declared in this scope
if(ans%mm==0)
^
|