# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1120854 | vjudge1 | Palindrome-Free Numbers (BOI13_numbers) | C++17 | 1082 ms | 512 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "bits/stdc++.h"
#define fast ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
#define ll long long
#define pb push_back
#define in insert
#define F first
#define S second
#define vll vector<ll>
#define all(v) v.begin(),v.end()
#define endl '\n'
#define pii pair<ll,ll>
using namespace std;
const ll INF =1e18, mod = 1e9 + 7, N = 1e5 + 5;
bool free(ll n){
string s = to_string(n);
for(int i = 0; i < s.size(); i++){
for(int j = i + 1; j < s.size(); j++){
string neww = s.substr(i, j - i + 1);
string e = neww;
reverse(all(neww));
if(neww == e){
return false;
}
}
}
return true;
}
void solve(){
int a,b;
cin >> a >> b;
int cnt = 0;
for(int i = a; i <= b; i++){
if(free(i)){
cnt++;
}
}
cout << cnt << endl;
}
int main(){
fast;
solve();
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |