Skip to content

Instantly share code, notes, and snippets.

@husnain-iqbal
Created February 16, 2016 04:13
Show Gist options
  • Save husnain-iqbal/e8a3123137f38ff20fde to your computer and use it in GitHub Desktop.
Save husnain-iqbal/e8a3123137f38ff20fde to your computer and use it in GitHub Desktop.
import java.io.*; import java.util.*; import java.text.*; import java.math.*; import java.util.regex.*; public class Solution { public static void main(String[] args) { Scanner in = new Scanner(System.in); int t = in.nextInt(); for(int a0 = 0; a0 < t; a0++){ int n = in.nextInt(); int k = in.nextInt(); int a[] = new int[n]; int studentsOnTime = 0…
import java.io.*;
import java.util.*;
import java.text.*;
import java.math.*;
import java.util.regex.*;
public class Solution {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
int t = in.nextInt();
for(int a0 = 0; a0 < t; a0++){
int n = in.nextInt();
int k = in.nextInt();
int a[] = new int[n];
int studentsOnTime = 0;
for(int a_i=0; a_i < n; a_i++){
a[a_i] = in.nextInt();
if(a[a_i] <= 0){
studentsOnTime++;
}
}
if(studentsOnTime >= k){
System.out.println("NO");
}
else{
System.out.println("YES");
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment