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

Envío 4353

Problema 0x9d - ¿Está ordenado?

  • Autor: disanchezx
  • Fecha: 2021-06-11 05:35:13 UTC (Hace casi 3 años)
Caso # Resultado Tiempo Memoria
#1
Incorrecto
0.016 s 3 KBi
#2
Incorrecto
0.021 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.029 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.017 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.021 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.032 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.02 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.024 s 7 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.021 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.024 s 6 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

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