Caso # | Resultado | Tiempo | Memoria |
---|---|---|---|
#1 |
Correcto
|
0.154 s | 15 KBi |
#2 |
Correcto
|
0.134 s | 15 KBi |
#3 |
Correcto
|
0.159 s | 15 KBi |
#4 |
Correcto
|
0.149 s | 16 KBi |
#5 |
Correcto
|
0.187 s | 12 KBi |
#6 |
Correcto
|
0.173 s | 16 KBi |
#7 |
Correcto
|
0.17 s | 16 KBi |
#8 |
Error en tiempo de ejecución (NZEC)
Exited with error status 137 run: line 1: 3 Killed /usr/local/openjdk13/bin/java Main |
0.766 s | 125 KBi |
#9 |
Tiempo límite excedido
|
1.016 s | 37 KBi |
#10 |
Tiempo límite excedido
|
1.025 s | 36 KBi |
#11 |
Tiempo límite excedido
|
1.089 s | 84 KBi |
#12 |
Tiempo límite excedido
|
1.145 s | 85 KBi |
#13 |
Tiempo límite excedido
|
1.093 s | 84 KBi |
#14 |
Tiempo límite excedido
|
1.114 s | 85 KBi |
import java.util.Scanner; public class Main { public static void main(String[] args) throws Exception { Scanner teclado = new Scanner(System.in); teclado.nextLine(); String[] entradas = teclado.nextLine().split(" "); int[] entint = new int[entradas.length]; int[] acc = new int[entradas.length]; for (int i = 0; i < entradas.length; i++) { entint[i] = Integer.parseInt(entradas[i]); if(i == 0){ acc[i] = entint[i]; }else{ acc[i] = entint[i]+acc[i-1]; } } int checks = Integer.parseInt(teclado.nextLine()); for (int i = 0; i < checks; i++) { String[] par = teclado.nextLine().split(" "); int a = Integer.parseInt(par[0]); int b = Integer.parseInt(par[1]); int res = 0; if(a != 0){ res = acc[a-1]; } System.out.println(acc[b]-res); } } }