记录编号 | 169951 | 评测结果 | AAAAAAAAAA | ||
---|---|---|---|---|---|
题目名称 | [NOIP 2013]计数问题 | 最终得分 | 100 | ||
用户昵称 | Saionji | 是否通过 | 通过 | ||
代码语言 | C++ | 运行时间 | 0.118 s | ||
提交时间 | 2015-07-11 15:27:40 | 内存使用 | 0.31 MiB | ||
#include <fstream> using namespace std; int main() { ifstream fin("count2013.in"); ofstream fout("count2013.out"); int n, x, digit, i, ans = 0, temp = 1; fin>>n>>x; for(i=1;i<=n;i++) { temp = i; while(temp>0) { digit = temp % 10; temp = temp / 10; if(digit==x)ans++; } } fout<<ans<<endl; fin.close(); fout.close(); return 0; }