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

Envío 4351

Problema 0x9d - ¿Está ordenado?

  • Autor: disanchezx
  • Fecha: 2021-06-11 05:25:20 UTC (Hace casi 3 años)
Caso # Resultado Tiempo Memoria
#1
Incorrecto
0.016 s 3 KBi
#2
Incorrecto
0.022 s 3 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>
    a, b, c, d, f = [int(x) for x in input().split()]
ValueError: too many values to unpack (expected 5)
0.022 s 3 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>
    a, b, c, d, f = [int(x) for x in input().split()]
ValueError: too many values to unpack (expected 5)
0.026 s 3 KBi
#5
Error en tiempo de ejecución (NZEC)
Exited with error status 1
Traceback (most recent call last):
  File "script.py", line 2, in <module>
    a, b, c, d, f = [int(x) for x in input().split()]
ValueError: too many values to unpack (expected 5)
0.02 s 3 KBi
#6
Error en tiempo de ejecución (NZEC)
Exited with error status 1
Traceback (most recent call last):
  File "script.py", line 2, in <module>
    a, b, c, d, f = [int(x) for x in input().split()]
ValueError: too many values to unpack (expected 5)
0.02 s 3 KBi
#7
Error en tiempo de ejecución (NZEC)
Exited with error status 1
Traceback (most recent call last):
  File "script.py", line 2, in <module>
    a, b, c, d, f = [int(x) for x in input().split()]
ValueError: too many values to unpack (expected 5)
0.02 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 2, in <module>
    a, b, c, d, f = [int(x) for x in input().split()]
ValueError: too many values to unpack (expected 5)
0.016 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 2, in <module>
    a, b, c, d, f = [int(x) for x in input().split()]
ValueError: too many values to unpack (expected 5)
0.028 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 2, in <module>
    a, b, c, d, f = [int(x) for x in input().split()]
ValueError: too many values to unpack (expected 5)
0.029 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 2, in <module>
    a, b, c, d, f = [int(x) for x in input().split()]
ValueError: too many values to unpack (expected 5)
0.02 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 2, in <module>
    a, b, c, d, f = [int(x) for x in input().split()]
ValueError: too many values to unpack (expected 5)
0.029 s 3 KBi
Puntos totales: 0 / 100

Código

e = print(input("Array elements "))
a, b, c, d, f = [int(x) for x in input().split()]
if b > a:
    print("Ordenado")
elif b < a:
    print("Desordenado")