#include<bits/stdc++.h> using namespace std; int cyfra(long long x) { while(x >= 10) { long long z = x; long long y = 1; while(z > 0) { y *= z % 10; z /= 10; } x = y; } return x; } int zlicz[12]; int32_t main() { ios_base::sync_with_stdio(0); cin.tie(0); int z; cin >> z; for(int i = 0; i < z; i++) { long long n; cin >> n; for(int j = 1; j <= n; j++) zlicz[cyfra(j)]++; for(int j = 0; j < 10; j++) { cout << zlicz[j] << ' '; zlicz[j] = 0; } cout << '\n'; } }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | #include<bits/stdc++.h> using namespace std; int cyfra(long long x) { while(x >= 10) { long long z = x; long long y = 1; while(z > 0) { y *= z % 10; z /= 10; } x = y; } return x; } int zlicz[12]; int32_t main() { ios_base::sync_with_stdio(0); cin.tie(0); int z; cin >> z; for(int i = 0; i < z; i++) { long long n; cin >> n; for(int j = 1; j <= n; j++) zlicz[cyfra(j)]++; for(int j = 0; j < 10; j++) { cout << zlicz[j] << ' '; zlicz[j] = 0; } cout << '\n'; } } |