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

Envío 6929

Problema 0x9d - ¿Está ordenado?

Caso # Resultado Tiempo Memoria
#1
Error en tiempo de ejecución (NZEC)
Exited with error status 1
Traceback (most recent call last):
  File "script.py", line 10, in <module>
    print(estaOrdenado(n, arreglo))
  File "script.py", line 7, in estaOrdenado
    if(int(arreglo[i]>int(arreglo[i+1]))):
TypeError: '>' not supported between instances of 'str' and 'int'
0.014 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 10, in <module>
    print(estaOrdenado(n, arreglo))
  File "script.py", line 7, in estaOrdenado
    if(int(arreglo[i]>int(arreglo[i+1]))):
TypeError: '>' not supported between instances of 'str' and 'int'
0.008 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 10, in <module>
    print(estaOrdenado(n, arreglo))
  File "script.py", line 7, in estaOrdenado
    if(int(arreglo[i]>int(arreglo[i+1]))):
TypeError: '>' not supported between instances of 'str' and 'int'
0.009 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 10, in <module>
    print(estaOrdenado(n, arreglo))
  File "script.py", line 7, in estaOrdenado
    if(int(arreglo[i]>int(arreglo[i+1]))):
TypeError: '>' not supported between instances of 'str' and 'int'
0.011 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 10, in <module>
    print(estaOrdenado(n, arreglo))
  File "script.py", line 7, in estaOrdenado
    if(int(arreglo[i]>int(arreglo[i+1]))):
TypeError: '>' not supported between instances of 'str' and 'int'
0.017 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 10, in <module>
    print(estaOrdenado(n, arreglo))
  File "script.py", line 7, in estaOrdenado
    if(int(arreglo[i]>int(arreglo[i+1]))):
TypeError: '>' not supported between instances of 'str' and 'int'
0.019 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 10, in <module>
    print(estaOrdenado(n, arreglo))
  File "script.py", line 7, in estaOrdenado
    if(int(arreglo[i]>int(arreglo[i+1]))):
TypeError: '>' not supported between instances of 'str' and 'int'
0.009 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 10, in <module>
    print(estaOrdenado(n, arreglo))
  File "script.py", line 7, in estaOrdenado
    if(int(arreglo[i]>int(arreglo[i+1]))):
TypeError: '>' not supported between instances of 'str' and 'int'
0.01 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 10, in <module>
    print(estaOrdenado(n, arreglo))
  File "script.py", line 7, in estaOrdenado
    if(int(arreglo[i]>int(arreglo[i+1]))):
TypeError: '>' not supported between instances of 'str' and 'int'
0.009 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 10, in <module>
    print(estaOrdenado(n, arreglo))
  File "script.py", line 7, in estaOrdenado
    if(int(arreglo[i]>int(arreglo[i+1]))):
TypeError: '>' not supported between instances of 'str' and 'int'
0.008 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 10, in <module>
    print(estaOrdenado(n, arreglo))
  File "script.py", line 7, in estaOrdenado
    if(int(arreglo[i]>int(arreglo[i+1]))):
TypeError: '>' not supported between instances of 'str' and 'int'
0.008 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 10, in <module>
    print(estaOrdenado(n, arreglo))
  File "script.py", line 7, in estaOrdenado
    if(int(arreglo[i]>int(arreglo[i+1]))):
TypeError: '>' not supported between instances of 'str' and 'int'
0.009 s 3 KBi
Puntos totales: 0 / 100

Código

n = int(input())
arreglo = input().split()

def estaOrdenado(n,arreglo):
  for i in range(0,n):
    if(i<n-1):
      if(int(arreglo[i]>int(arreglo[i+1]))):
        return("esta desordenado")
    return("esta ordenado")
print(estaOrdenado(n, arreglo))