记录编号 | 188042 | 评测结果 | AAAAAAAAAA | ||
---|---|---|---|---|---|
题目名称 | [NOIP 2013]计数问题 | 最终得分 | 100 | ||
用户昵称 | 奥、神代号~ | 是否通过 | 通过 | ||
代码语言 | C++ | 运行时间 | 0.109 s | ||
提交时间 | 2015-09-21 19:33:59 | 内存使用 | 0.31 MiB | ||
#include <fstream> #include <string> using namespace std; ifstream in ("count2013.in"); ofstream out ("count2013.out"); int main() { int n, x; int i, t, d, k; k = 0; in>>n>>x; for(i=1;i<=n;i++) { t = i; while(t>0) { d = t % 10; t = t / 10; if(d==x)k++; } } out<<k; in.close(); out.close(); return 0; }