You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
380 B

#include <bits/stdc++.h>
using namespace std;
int n;
string s;
int res;
int main() {
cin >> n >> s;
for (int i = 0; i < (int)s.size(); i++)
for (int j = i + 1; j < (int)s.size(); j++) {
if (s[i] == s[j]) {
res = max(res, j - i);
break;
}
}
cout << res << endl;
return 0;
}