0_0_24213815_487.cpp:37:3: error: stray '#' in program
} #include<iostream>
^
0_0_24213815_487.cpp:37:4: error: 'include' does not name a type
} #include<iostream>
^
0_0_24213815_487.cpp:43:11: error: redefinition of 'const int maxn'
const int maxn = 100001;
^
0_0_24213815_487.cpp:7:11: note: 'const int maxn' previously defined here
const int maxn = 100001;
^
0_0_24213815_487.cpp:44:12: error: redefinition of 'int dp [100001]'
int dp[maxn],a[maxn],s[maxn];
^
0_0_24213815_487.cpp:8:5: note: 'int dp [100001]' previously declared here
int dp[maxn],a[maxn],s[maxn];
^
0_0_24213815_487.cpp:44:20: error: redefinition of 'int a [100001]'
int dp[maxn],a[maxn],s[maxn];
^
0_0_24213815_487.cpp:8:14: note: 'int a [100001]' previously declared here
int dp[maxn],a[maxn],s[maxn];
^
0_0_24213815_487.cpp:44:28: error: redefinition of 'int s [100001]'
int dp[maxn],a[maxn],s[maxn];
^
0_0_24213815_487.cpp:8:22: note: 'int s [100001]' previously declared here
int dp[maxn],a[maxn],s[maxn];
^
0_0_24213815_487.cpp: In function 'int main()':
0_0_24213815_487.cpp:45:5: error: redefinition of 'int main()'
int main(){
^
0_0_24213815_487.cpp:9:5: note: 'int main()' previously defined here
int main(){
^
|