結果

問題 No.491 10^9+1と回文
ユーザー MicrobeMicrobe
提出日時 2017-03-11 18:14:05
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 15 ms / 1,000 ms
コード長 628 bytes
コンパイル時間 1,442 ms
コンパイル使用メモリ 169,524 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-01 08:31:03
合計ジャッジ時間 4,752 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 103
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define FOR(i, j, k) for(int i = j; i < k; ++i)
#define rep(i, j) FOR(i, 0, j)
#define repr(i, j) for(int i = j; i >= 0; --i)
#define INF (1 << 30)
#define MOD 1e9 + 7

typedef long long ll;
typedef unsigned long long ull;
typedef pair<int, int> P;

int main() {
	ll N;
	scanf("%lld", &N);
	N /= (int)(1e9 + 1);
	ll ans = 0;
	FOR(i, 1, 1e5) {
		string num = to_string(i);
		string s = num, t = num;
		reverse(num.begin(), num.end());
		s = s + num;
		t += num.substr(1, num.size() - 1);
		if(stoll(s) <= N) ++ans;
		if(stoll(t) <= N) ++ans;
	}
	printf("%lld\n", ans);
	return 0;
}
0