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

Envío 2230

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

  • Autor: stivenxito
  • Fecha: 2020-12-06 21:52:24 UTC (Hace alrededor de 4 años)
Caso # Resultado Tiempo Memoria
#1
Correcto
0.188 s 15 KBi
#2
Correcto
0.202 s 15 KBi
#3
Correcto
0.158 s 52 KBi
#4
Correcto
0.209 s 16 KBi
#5
Correcto
0.179 s 12 KBi
#6
Correcto
0.202 s 16 KBi
#7
Correcto
0.214 s 16 KBi
#8
Correcto
0.254 s 16 KBi
#9
Correcto
0.205 s 13 KBi
#10
Correcto
0.241 s 16 KBi
Puntos totales: 100 / 100

Código

import java.util.Scanner;
class Main {
public static void main(String[] args){
 Scanner scan = new Scanner(System.in);
 
 int n = scan.nextInt();
 int[] elementos = new int[n];
 for(int i=0; i<n; i++){
  elementos[i] = scan.nextInt();
 }
 
int nConsultas = scan.nextInt();
for(int i=1; i<=nConsultas; i++){
 int numero = scan.nextInt();
 int veces = 0;
 for(int j: elementos){
 if(j>numero) veces++;
}
System.out.println(veces);
}


}



}