Caso # | Resultado | Tiempo | Memoria |
---|---|---|---|
#1 |
Error en tiempo de ejecución (NZEC)
Exited with error status 1 Traceback (most recent call last): File "script.py", line 15, in <module> while i >= 0 and j >= 0 and edifs[j] >= edifs[index]: IndexError: list index out of range |
0.019 s | 3 KBi |
#2 |
Correcto
|
0.019 s | 3 KBi |
#3 |
Correcto
|
0.008 s | 3 KBi |
#4 |
Correcto
|
0.019 s | 3 KBi |
#5 |
Correcto
|
0.022 s | 3 KBi |
#6 |
Correcto
|
0.008 s | 3 KBi |
#7 |
Correcto
|
0.026 s | 3 KBi |
#8 |
Error en tiempo de ejecución (NZEC)
Exited with error status 1 Traceback (most recent call last): File "script.py", line 15, in <module> while i >= 0 and j >= 0 and edifs[j] >= edifs[index]: IndexError: list index out of range |
0.013 s | 3 KBi |
#9 |
Error en tiempo de ejecución (NZEC)
Exited with error status 1 Traceback (most recent call last): File "script.py", line 15, in <module> while i >= 0 and j >= 0 and edifs[j] >= edifs[index]: IndexError: list index out of range |
0.021 s | 3 KBi |
#10 |
Error en tiempo de ejecución (NZEC)
Exited with error status 1 Traceback (most recent call last): File "script.py", line 15, in <module> while i >= 0 and j >= 0 and edifs[j] >= edifs[index]: IndexError: list index out of range |
0.025 s | 3 KBi |
#11 |
Error en tiempo de ejecución (NZEC)
Exited with error status 1 Traceback (most recent call last): File "script.py", line 15, in <module> while i >= 0 and j >= 0 and edifs[j] >= edifs[index]: IndexError: list index out of range |
0.022 s | 3 KBi |
#12 |
Error en tiempo de ejecución (NZEC)
Exited with error status 1 Traceback (most recent call last): File "script.py", line 15, in <module> while i >= 0 and j >= 0 and edifs[j] >= edifs[index]: IndexError: list index out of range |
0.008 s | 3 KBi |
#13 |
Error en tiempo de ejecución (NZEC)
Exited with error status 1 Traceback (most recent call last): File "script.py", line 15, in <module> while i >= 0 and j >= 0 and edifs[j] >= edifs[index]: IndexError: list index out of range |
0.029 s | 3 KBi |
#14 |
Error en tiempo de ejecución (NZEC)
Exited with error status 1 Traceback (most recent call last): File "script.py", line 15, in <module> while i >= 0 and j >= 0 and edifs[j] >= edifs[index]: IndexError: list index out of range |
0.027 s | 3 KBi |
#15 |
Error en tiempo de ejecución (NZEC)
Exited with error status 1 Traceback (most recent call last): File "script.py", line 15, in <module> while i >= 0 and j >= 0 and edifs[j] >= edifs[index]: IndexError: list index out of range |
0.026 s | 3 KBi |
#16 |
Error en tiempo de ejecución (NZEC)
Exited with error status 1 Traceback (most recent call last): File "script.py", line 15, in <module> while i >= 0 and j >= 0 and edifs[j] >= edifs[index]: IndexError: list index out of range |
0.016 s | 3 KBi |
#17 |
Error en tiempo de ejecución (NZEC)
Exited with error status 1 Traceback (most recent call last): File "script.py", line 15, in <module> while i >= 0 and j >= 0 and edifs[j] >= edifs[index]: IndexError: list index out of range |
0.029 s | 3 KBi |
#18 |
Error en tiempo de ejecución (NZEC)
Exited with error status 1 Traceback (most recent call last): File "script.py", line 15, in <module> while i >= 0 and j >= 0 and edifs[j] >= edifs[index]: IndexError: list index out of range |
0.008 s | 3 KBi |
#19 |
Error en tiempo de ejecución (NZEC)
Exited with error status 1 Traceback (most recent call last): File "script.py", line 15, in <module> while i >= 0 and j >= 0 and edifs[j] >= edifs[index]: IndexError: list index out of range |
0.03 s | 3 KBi |
N = input() edifs = list(map(int, input().split(' '))) area = 0 for i in range(len(edifs)): j = i while j < len(edifs) and edifs[j] >= edifs[i]: area = max(area, edifs[i] * (j-i+1)) j += 1 index = len(edifs) - 1 for i in range(len(edifs)): index -= i j = i while i >= 0 and j >= 0 and edifs[j] >= edifs[index]: area = max(area, edifs[index] * (index-j+1)) j -= 1 area = max(area, len(edifs)) print(area)