# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
121618 | sofhiasouza | Palindrome-Free Numbers (BOI13_numbers) | C++14 | 1089 ms | 460 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
int main()
{
ll a, b;
cin >> a >> b;
int cont = 0, cont2 = 0;
for(ll i = a ; i <= b ; i++)
{
string s;
stringstream ans;
ans << i;
ans >> s;
int flag = 0;
for(int j = 0 ; j < s.size() ; j++)
{
for(int k = j+1 ; k < s.size() ; k++)
{
string aux = "";
for(int p = j ; p <= k ; p++) aux.push_back(s[p]);
string aux2 = aux;
reverse(aux2.begin(), aux2.end());
if(aux == aux2) flag = 1;
}
}
if(flag)
{
//cout << i << endl;
cont2++;
}
cont++;
}
cout << cont - cont2 << endl;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |