This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
// author - alimammadzade
#include <bits/stdc++.h>
using namespace std;
int free(int i) {
string s = to_string(i);
for (int i = 0; i < (int)s.size() - 1; i++)
for (int j = i + 1; j < (int)s.size(); j++) {
string a = s.substr(i, j - i + 1), b = a;
reverse(b.begin(), b.end());
if (a == b) return 0;
}
return 1;
}
signed main() {
cin.tie(nullptr)->sync_with_stdio(false);
// system("cls"), freopen("in.txt", "r", stdin);
int a, b, res = 0;
cin >> a >> b;
for (int i = a; i <= b; i++) res += free(i);
cout << res;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |