fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. short t;
  7. cin >> t;
  8. int count=0;
  9. while(t--)
  10. {
  11. int n;
  12. cin >> n;
  13.  
  14. for (int i=1; i<=n; i++)
  15. {
  16. bool b=1;
  17. string s = to_string(i);
  18. for (int j =0; j<s.length()-1;j++)
  19. {
  20. if (s[j]!=s[j+1])
  21. {
  22. b =0;
  23. }
  24. }
  25. if (b==1)
  26. {
  27. count++;
  28. }
  29. }
  30. cout << count << endl;
  31. }
  32.  
  33. }
Success #stdin #stdout 0.01s 5280KB
stdin
6
1
2
3
4
5
100
stdout
1
3
6
10
15
33