洛谷P1554 梦中的统计 题解
Posted yzx1798106406
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了洛谷P1554 梦中的统计 题解相关的知识,希望对你有一定的参考价值。
这道题暴力又让我过了。。。数据真的很水(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 梦中的统计 题解的主要内容,如果未能解决你的问题,请参考以下文章