记录编号 177760 评测结果 AAAAAAAAAA
题目名称 [NOIP 2013]计数问题 最终得分 100
用户昵称 Gravatar啊吧啦吧啦吧 是否通过 通过
代码语言 C++ 运行时间 0.220 s
提交时间 2015-08-12 17:45:07 内存使用 0.25 MiB
显示代码纯文本
#include <iostream>
#include <fstream>

using namespace std;

ifstream fin("count2013.in");
ofstream fout("count2013.out");
#define cin fin
#define cout fout
int n, x, ans;

main()
{
	ios::sync_with_stdio(false);
	cin >> n >> x;
	fin.close();
	
	for (int i = 1; i <= n; ++i){
		int j = i;
		while (j > 0){
			int k = j % 10;
			if (k == x)
				ans++;
			j /= 10;
		}
	}
	
	cout << ans;
	fout.close();
}