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

Envío 587

Problema 0xf2 - Partir un arreglo grande en 2

  • Autor: d4vsanchez
  • Fecha: 2020-09-08 13:36:51 UTC (Hace más de 4 años)
Caso # Resultado Tiempo Memoria
#1
Correcto
0.028 s 3 KBi
#2
Correcto
0.031 s 6 KBi
#3
Correcto
0.032 s 5 KBi
#4
Correcto
0.022 s 4 KBi
#5
Correcto
0.029 s 3 KBi
#6
Correcto
0.031 s 3 KBi
#7
Correcto
0.033 s 3 KBi
#8
Correcto
0.023 s 3 KBi
#9
Correcto
0.028 s 3 KBi
#10
Correcto
0.023 s 3 KBi
#11
Correcto
0.029 s 6 KBi
#12
Correcto
0.043 s 3 KBi
#13
Correcto
0.041 s 3 KBi
#14
Tiempo límite excedido
0.802 s 33 KBi
#15
Tiempo límite excedido
0.763 s 12 KBi
#16
Tiempo límite excedido
0.81 s 28 KBi
#17
Tiempo límite excedido
0.288 s 28 KBi
#18
Tiempo límite excedido
0.313 s 28 KBi
#19
Tiempo límite excedido
0.276 s 28 KBi
#20
Tiempo límite excedido
1.031 s 57 KBi
Puntos totales: 65 / 100

Código

import math

n = int(input())
numbers = [int(number) for number in input().split()]

assert len(numbers) == n

split_position = math.inf
for i in range(1, n + 1):
    left_sum = sum(numbers[:i])
    right_sum = sum(numbers[i:])
    if right_sum < 0 and left_sum > 0 and i < split_position:
        split_position = i

if split_position != math.inf:
    print(split_position)
else:
    print("Impossible")