Solution to the problem 'Red Light, Green Light' from Codechef
Question Link: https://www.codechef.com/INFI21C/problems/DOLL
#include <bits/stdc++.h>
#define int long long
#define pb push_back
#define fi first
#define se second
#define pii pair<int,int>
using namespace std;
int32_t main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int t;
cin>>t;
while(t--){
int n,k,ans=0;
cin>>n>>k;
for(int i=0;i<n;i++){
int x;
cin>>x;
if(x>k) ans++;
}
cout<<ans<<'\n';
}
return 0;
}
Comments
Post a Comment