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

Envío 4354

Problema 0x9d - ¿Está ordenado?

  • Autor: disanchezx
  • Fecha: 2021-06-11 21:08:37 UTC (Hace casi 3 años)
Caso # Resultado Tiempo Memoria
#1
Correcto
0.024 s 3 KBi
#2
Correcto
0.024 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.016 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.031 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.032 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.03 s 7 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.016 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.027 s 7 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.023 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.022 s 3 KBi
Puntos totales: 17 / 100

Código

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