0_0_30517641_10853.cpp: In function 'int main()':
0_0_30517641_10853.cpp:36:13: error: 'LL' was not declared in this scope
for(LL t=1;t<=n;t++){
^
0_0_30517641_10853.cpp:36:20: error: 't' was not declared in this scope
for(LL t=1;t<=n;t++){
^
0_0_30517641_10853.cpp:37:16: error: expected ';' before 'sum1'
LL sum1=0,sum2=0;
^
0_0_30517641_10853.cpp:38:20: error: expected ';' before 'i'
for(LL i=1;i<=n/t;i++)
^
0_0_30517641_10853.cpp:38:24: error: 'i' was not declared in this scope
for(LL i=1;i<=n/t;i++)
^
0_0_30517641_10853.cpp:39:17: error: 'sum1' was not declared in this scope
sum1+=mu[i*t];
^
0_0_30517641_10853.cpp:40:20: error: expected ';' before 'j'
for(LL j=1;j<=m/t;j++)
^
0_0_30517641_10853.cpp:40:24: error: 'j' was not declared in this scope
for(LL j=1;j<=m/t;j++)
^
0_0_30517641_10853.cpp:41:17: error: 'sum2' was not declared in this scope
sum2+=mu[j*t];
^
0_0_30517641_10853.cpp:42:13: error: 'ans' was not declared in this scope
ans+=sum1*sum2*a[t];
^
0_0_30517641_10853.cpp:42:18: error: 'sum1' was not declared in this scope
ans+=sum1*sum2*a[t];
^
0_0_30517641_10853.cpp:42:23: error: 'sum2' was not declared in this scope
ans+=sum1*sum2*a[t];
^
0_0_30517641_10853.cpp:47:1: error: expected '}' at end of input
}
^
|