# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1120516 | vjudge1 | Palindrome-Free Numbers (BOI13_numbers) | C++14 | 1083 ms | 512 KiB |
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>
#define int long long
using namespace std;
bool 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;
scanf("%lld %lld", &a, &b);
for (int i = a; i <= b; i++) res += free(i);
printf("%lld", res);
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |