fork download
  1. #include <bits/stdc++.h>
  2.  
  3. using namespace std;
  4. int T,n,k,d,t;
  5. int A[1005];
  6. int main() {
  7. ios_base::sync_with_stdio(false);
  8. cin.tie(NULL);
  9. cin >> T;
  10. while(T--)
  11. {
  12. d = 0;
  13. cin >> n >> k;
  14. for(int i = 1; i <= n; i++)
  15. {
  16. cin >> A[i];
  17. if (A[i] == k) d++;
  18. while(A[i] > 0)
  19. {
  20. t = A[i] % 10;
  21. A[i] /= 10;
  22. if(t == k) d++;
  23. }
  24. }
  25. cout << d << endl;
  26. }
  27. return 0;
  28. }
Success #stdin #stdout 0.01s 5284KB
stdin
2
5 1
11 12 13 14 15
4 0
0 10 20 30
stdout
6
4