0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 13:05:25 +00:00
OI-codes/Luogu/problem/P1554/P1554.cpp
2021-01-02 15:30:52 +08:00

21 lines
339 B
C++

// https://www.luogu.com.cn/record/36226094
#include <bits/stdc++.h>
using namespace std;
int n, m, js[10];
int main() {
cin >> n >> m;
for(int i = n ; i <= m ; i++) {
for(int j = i ; j ; j /= 10) {
js[j%10]++;
}
}
for(int i = 0 ; i < 10 ; i++) {
cout << js[i] << " ";
}
return 0;
}