General
 
 
# Author Problem Lang Verdict Time Memory Sent Judged  
86356807 Practice:
CodingBlood
158A - 12 GNU C++11 Idleness limit exceeded on test 1 0 ms 0 KB 2020-07-09 17:26:16 2020-07-09 17:26:16
→ Source
#include <stdio.h>
#include <conio.h>
 
int main()
{
    int a[100];
    int k,n,score=0;
    scanf("%d%d",&n,&k);
    for (int i = 0; i < n; i++)
    {
        scanf("%d", &a[i]);
    }
    for (int i = 0; i < n; i++)
    {
        if (a[i]>k)
        {
            score=score+1;
        }        
    }
    printf("%d",score);
    
    
    getch();
    return 0;
}
	
?
Time: ? ms, memory: ? KB
Verdict: ?
Input
?
Participant's output
?
Jury's answer
?
Checker comment
?
Diagnostics
?
Click to see test details