Caso # | Resultado | Tiempo | Memoria |
---|---|---|---|
#1 |
Correcto
|
0.194 s | 12 KBi |
#2 |
Correcto
|
0.15 s | 15 KBi |
#3 |
Correcto
|
0.14 s | 15 KBi |
#4 |
Correcto
|
0.138 s | 16 KBi |
#5 |
Correcto
|
0.188 s | 12 KBi |
#6 |
Correcto
|
0.169 s | 16 KBi |
#7 |
Correcto
|
0.184 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.703 s | 125 KBi |
#9 |
Tiempo límite excedido
|
1.042 s | 83 KBi |
#10 |
Tiempo límite excedido
|
1.06 s | 83 KBi |
#11 |
Tiempo límite excedido
|
1.096 s | 34 KBi |
#12 |
Tiempo límite excedido
|
1.057 s | 34 KBi |
#13 |
Tiempo límite excedido
|
1.05 s | 84 KBi |
#14 |
Tiempo límite excedido
|
1.125 s | 82 KBi |
import java.util.*; 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]; for (int i = 0; i < entradas.length; i++) { entint[i] = Integer.parseInt(entradas[i]); } 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]); boolean isnpar = (b - a)%2 == 1; int sum = 0; while(a <= b){ sum += entint[a]; if(a + 1 < b || isnpar){ sum += entint[b]; } a++; b--; } System.out.println(sum); } } }