結果
問題 | No.491 10^9+1と回文 |
ユーザー |
![]() |
提出日時 | 2020-02-17 00:06:47 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,339 bytes |
コンパイル時間 | 1,942 ms |
コンパイル使用メモリ | 158,060 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-06 14:44:31 |
合計ジャッジ時間 | 4,184 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 42 WA * 61 |
ソースコード
#include "bits/stdc++.h"using namespace std;#define int long long#define FOR(i, a, b) for(int i=(a);i<(b);i++)#define RFOR(i, a, b) for(int i=(b-1);i>=(a);i--)#define REP(i, n) for(int i=0; i<(n); i++)#define RREP(i, n) for(int i=(n-1); i>=0; i--)#define REP1(i, n) for(int i=1; i<=(n); i++)#define RREP1(i, n) for(int i=(n); i>=1; i--)#define ALL(a) (a).begin(),(a).end()#define UNIQUE_SORT(l) sort(ALL(l)); l.erase(unique(ALL(l)), l.end());#define CONTAIN(a, b) find(ALL(a), (b)) != (a).end()#define out(...) printf(__VA_ARGS__)int dxy[] = {0, 1, 0, -1, 0};void solve();signed main(){#if DEBUGstd::ifstream in("input.txt");std::cin.rdbuf(in.rdbuf());#endifcin.tie(0);ios::sync_with_stdio(false);solve();return 0;}/*================================*/#if DEBUG#define SIZE 100#else#define SIZE 123450#endifint N,M,Q;int base = 1e9+1;int ans = 0;void count() {REP1(i,11) { // 桁数REP1(j,9) { // 数int t = 0;REP(k,i) t += j * pow(10, k);int n = base * t;if (n>N) return;ans++;}}}void solve() {cin>>N;/*1~911,22,...,99111,222,...,999...111111111,...,999999999*/// 全探索でいいか?count();cout << ans << endl;}