码迷,mamicode.com
首页 > 其他好文 > 详细

洛谷P1554 梦中的统计 题解

时间:2018-05-14 21:31:43      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:https   color   using   ora   namespace   ext   int   http   tar   

题目传送门

这道题暴力又让我过了。。。数据真的很水(luogu

暴力枚举n~m的每个数,再统计一次,交付评测。。。AC

#include<bits/stdc++.h>
using namespace std;
int n,m,a[15];
int main(){
    scanf("%d%d",&n,&m);
    for(int i=n;i<=m;i++){
        int tmp=i,k=0,fs;
        while(tmp!=0){
            ++k;
            fs=tmp%10;
            tmp/=10;
            a[fs]++;
        }
    }
    for(int i=0;i<=9;i++) printf("%d ",a[i]);
    puts("");return 0;
}

洛谷P1554 梦中的统计 题解

标签:https   color   using   ora   namespace   ext   int   http   tar   

原文地址:https://www.cnblogs.com/yzx1798106406/p/9038050.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!