System Testing
11 / 11
AC
11/11 test cases passed
Submission #1
| Problem | NumReverseEasy |
|---|---|
| Handle | test-ac |
| Submitted | 2026-07-05 07:56:28 |
Source Code
#include <string>
#include <algorithm>
using namespace std;
class NumReverseEasy {
public:
long long getsum(int A, int B) {
long long total = 0;
for (int n = A; n <= B; n++) {
string s = to_string(n);
reverse(s.begin(), s.end());
total += max((long long)n, (long long)stoll(s));
}
return total;
}
};