记录编号 512648 评测结果 AAAAAAAAAA
题目名称 [UVa 1225]数数字 最终得分 100
用户昵称 Gravatar2018noip必胜! 是否通过 通过
代码语言 C++ 运行时间 0.009 s
提交时间 2018-10-05 20:45:13 内存使用 0.32 MiB
显示代码纯文本
#include <bits/stdc++.h> 
 
 
using namespace std; 
int main(void)
{
	     freopen("digit_count.in","r",stdin);
          freopen("digit_count.out","w",stdout);
       int n = 0,g=0;
       cin>>n; int a[3][10]={0};
       for(int i = 0;i<10;i++)
       {
       	a[1][i]=i;
	   }
	   for(int j = 0;j<10;j++)
	   for(int i = 1;i<n+1;i++)
 {
 	g = i;
 	 while (g>0)
 	{
	 if(g%10==a[1][j])
 	{
 	 a[2][j]++;
	 } g=g/10;}
	
 }
		for(int i = 0;i<10;i++)
		{
			cout<<a[2][i]<<" "; 
		}
 }