█████████ ████ ███░░░░░███ ░░███ ███ ░░░ ██████ ███████ ██████ ██████ ░███ ███░░███ ███░░███ ███░░███ ███░░███ ░███ ░███ ░███░███ ░███ ░███████ ░███ ░███ ░░███ ███░███ ░███░███ ░███ ░███░░░ ░███ ░███ ░░█████████ ░░██████ ░░████████░░██████ ░░██████ ░░░░░░░░░ ░░░░░░ ░░░░░░░░ ░░░░░░ ░░░░░░

Envío 6679

Problema 0x62 - Contar elementos mayores a X en un arreglo pequeño

Caso # Resultado Tiempo Memoria
#1
Correcto
0.018 s 3 KBi
#2
Correcto
0.016 s 3 KBi
#3
Correcto
0.013 s 3 KBi
#4
Correcto
0.017 s 3 KBi
#5
Correcto
0.012 s 3 KBi
#6
Correcto
0.015 s 3 KBi
#7
Correcto
0.017 s 3 KBi
#8
Correcto
0.017 s 3 KBi
#9
Correcto
0.02 s 3 KBi
#10
Correcto
0.014 s 3 KBi
Puntos totales: 100 / 100

Código

total = int(input())
arreglo = list(map(int,input().split()))
n_consultas = int(input())
arr = []
for i in range(n_consultas):
    x = int(input())
    temp = 0
    for j in range(len(arreglo)):
        if(x<arreglo[j]):
            temp+=1
    arr.append(temp)


for i in range(len(arr)):
    print(arr[i])