0_0_38320154_10414.cpp:58:2: error: stray '#' in program
}#include<bits/stdc++.h>
^
0_0_38320154_10414.cpp:58:3: error: 'include' does not name a type
}#include<bits/stdc++.h>
^
0_0_38320154_10414.cpp:60:11: error: redefinition of 'const int Len'
const int Len = 10;
^
0_0_38320154_10414.cpp:3:11: note: 'const int Len' previously defined here
const int Len = 10;
^
0_0_38320154_10414.cpp:61:15: error: redefinition of 'int dp [10][10]'
int dp[Len][10];
^
0_0_38320154_10414.cpp:4:5: note: 'int dp [10][10]' previously declared here
int dp[Len][10];
^
0_0_38320154_10414.cpp:62:12: error: redefinition of 'int tmp [10]'
int tmp[Len];
^
0_0_38320154_10414.cpp:5:5: note: 'int tmp [10]' previously declared here
int tmp[Len];
^
0_0_38320154_10414.cpp: In function 'void init()':
0_0_38320154_10414.cpp:63:6: error: redefinition of 'void init()'
void init()
^
0_0_38320154_10414.cpp:6:6: note: 'void init()' previously defined here
void init()
^
0_0_38320154_10414.cpp: In function 'int solve(int)':
0_0_38320154_10414.cpp:79:5: error: redefinition of 'int solve(int)'
int solve(int x)
^
0_0_38320154_10414.cpp:22:5: note: 'int solve(int)' previously defined here
int solve(int x)
^
0_0_38320154_10414.cpp: In function 'int main()':
0_0_38320154_10414.cpp:102:5: error: redefinition of 'int main()'
int main()
^
0_0_38320154_10414.cpp:45:5: note: 'int main()' previously defined here
int main()
^
|