0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 02:05:25 +00:00
OI-codes/Luogu/P1239/P1239.cpp

21 lines
318 B
C++

#include <bits/stdc++.h>
using namespace std;
int n, ans[15], t;
int main() {
cin >> n;
for (int i = 1; i <= n; i++) {
t = i;
while (t) {
ans[t % 10]++;
t /= 10;
}
}
for (int i = 0; i < 10; i++) {
cout << ans[i] << endl;
}
return 0;
}