Caso # | Resultado | Tiempo | Memoria |
---|---|---|---|
#1 |
Correcto
|
0.013 s | 3 KBi |
#2 |
Error en tiempo de ejecución (NZEC)
Exited with error status 1 Traceback (most recent call last): File "script.py", line 2, in <module> z = int(x[0]) + int(x[2]) ValueError: invalid literal for int() with base 10: ' ' |
0.029 s | 6 KBi |
#3 |
Error en tiempo de ejecución (NZEC)
Exited with error status 1 Traceback (most recent call last): File "script.py", line 2, in <module> z = int(x[0]) + int(x[2]) ValueError: invalid literal for int() with base 10: ' ' |
0.032 s | 6 KBi |
#4 |
Error en tiempo de ejecución (NZEC)
Exited with error status 1 Traceback (most recent call last): File "script.py", line 2, in <module> z = int(x[0]) + int(x[2]) ValueError: invalid literal for int() with base 10: '-' |
0.022 s | 3 KBi |
#5 |
Incorrecto
|
0.011 s | 3 KBi |
x = input() z = int(x[0]) + int(x[2]) print(z)