记录编号 188056 评测结果 AAAAAAAAAA
题目名称 [NOIP 2013]计数问题 最终得分 100
用户昵称 GravatarMecruary丶 是否通过 通过
代码语言 C++ 运行时间 0.107 s
提交时间 2015-09-21 19:47:15 内存使用 0.31 MiB
显示代码纯文本
#include <fstream>
#include <string>
using namespace std;
ifstream fin ("count2013.in");
ofstream fout ("count2013.out");
int main()
{
	int n, x;
	int i, t, o, r;
	r = 0;
	fin>>n>>x;
	for(i=1;i<=n;i++)
		{
			t = i;
			while(t>0)
				{
					o= t % 10;
					t = t / 10;
					if(o==x)r++;
					}
			} 
	fout<<r;
	fin.close();
	fout.close();
	return 0;
}