結果
問題 | No.491 10^9+1と回文 |
ユーザー | どらら |
提出日時 | 2017-03-10 22:57:27 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 43 ms / 1,000 ms |
コード長 | 880 bytes |
コンパイル時間 | 1,462 ms |
コンパイル使用メモリ | 174,648 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-01 07:09:54 |
合計ジャッジ時間 | 7,323 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 103 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define REP(i,a,n) for(int i=(a); i<(int)(n); i++) #define rep(i,n) REP(i,0,n) #define FOR(it,c) for(__typeof((c).begin()) it=(c).begin(); it!=(c).end(); ++it) #define ALLOF(c) (c).begin(), (c).end() typedef long long ll; typedef unsigned long long ull; vector<ll> v; void dfs(const string& x){ if(x.size() >= 8) return; rep(i,10){ string y = (string("") + (char)('0'+i)) + x + (string("") + (char)('0'+i)); if(y[0] != '0' && y.size()<=9){ stringstream ss(y); ll z; ss >> z; v.push_back(z); } dfs(y); } } int main(){ ll N; cin >> N; dfs(""); rep(i,10){ if(i>0) v.push_back(i); dfs(string("") + (char)('0'+i)); } ll base = 1000000001LL; ll ret = 0; rep(i,v.size()){ ll x = base * v[i]; if(x <= N) ret++; } cout << ret << endl; return 0; }