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

Envío 7198

Problema 0x9d - ¿Está ordenado?

  • Autor: Jorgito
  • Fecha: 2023-11-06 17:16:18 UTC (Hace 6 meses)
Caso # Resultado Tiempo Memoria
#1
Error de compilación
                      main.c:1:1: warning: type specifier missing, defaults to 'int' [-Wimplicit-int]
N = int(input())
^
main.c:1:5: error: expected expression
N = int(input())
    ^
main.c:8:29: error: expected ';' after top level declarator
        print('Desordenado')
                            ^
                            ;
1 warning and 2 errors generated.

                    
#2
Error de compilación
                      main.c:1:1: warning: type specifier missing, defaults to 'int' [-Wimplicit-int]
N = int(input())
^
main.c:1:5: error: expected expression
N = int(input())
    ^
main.c:8:29: error: expected ';' after top level declarator
        print('Desordenado')
                            ^
                            ;
1 warning and 2 errors generated.

                    
#3
Error de compilación
                      main.c:1:1: warning: type specifier missing, defaults to 'int' [-Wimplicit-int]
N = int(input())
^
main.c:1:5: error: expected expression
N = int(input())
    ^
main.c:8:29: error: expected ';' after top level declarator
        print('Desordenado')
                            ^
                            ;
1 warning and 2 errors generated.

                    
#4
Error de compilación
                      main.c:1:1: warning: type specifier missing, defaults to 'int' [-Wimplicit-int]
N = int(input())
^
main.c:1:5: error: expected expression
N = int(input())
    ^
main.c:8:29: error: expected ';' after top level declarator
        print('Desordenado')
                            ^
                            ;
1 warning and 2 errors generated.

                    
#5
Error de compilación
                      main.c:1:1: warning: type specifier missing, defaults to 'int' [-Wimplicit-int]
N = int(input())
^
main.c:1:5: error: expected expression
N = int(input())
    ^
main.c:8:29: error: expected ';' after top level declarator
        print('Desordenado')
                            ^
                            ;
1 warning and 2 errors generated.

                    
#6
Error de compilación
                      main.c:1:1: warning: type specifier missing, defaults to 'int' [-Wimplicit-int]
N = int(input())
^
main.c:1:5: error: expected expression
N = int(input())
    ^
main.c:8:29: error: expected ';' after top level declarator
        print('Desordenado')
                            ^
                            ;
1 warning and 2 errors generated.

                    
#7
Error de compilación
                      main.c:1:1: warning: type specifier missing, defaults to 'int' [-Wimplicit-int]
N = int(input())
^
main.c:1:5: error: expected expression
N = int(input())
    ^
main.c:8:29: error: expected ';' after top level declarator
        print('Desordenado')
                            ^
                            ;
1 warning and 2 errors generated.

                    
#8
Error de compilación
                      main.c:1:1: warning: type specifier missing, defaults to 'int' [-Wimplicit-int]
N = int(input())
^
main.c:1:5: error: expected expression
N = int(input())
    ^
main.c:8:29: error: expected ';' after top level declarator
        print('Desordenado')
                            ^
                            ;
1 warning and 2 errors generated.

                    
#9
Error de compilación
                      main.c:1:1: warning: type specifier missing, defaults to 'int' [-Wimplicit-int]
N = int(input())
^
main.c:1:5: error: expected expression
N = int(input())
    ^
main.c:8:29: error: expected ';' after top level declarator
        print('Desordenado')
                            ^
                            ;
1 warning and 2 errors generated.

                    
#10
Error de compilación
                      main.c:1:1: warning: type specifier missing, defaults to 'int' [-Wimplicit-int]
N = int(input())
^
main.c:1:5: error: expected expression
N = int(input())
    ^
main.c:8:29: error: expected ';' after top level declarator
        print('Desordenado')
                            ^
                            ;
1 warning and 2 errors generated.

                    
#11
Error de compilación
                      main.c:1:1: warning: type specifier missing, defaults to 'int' [-Wimplicit-int]
N = int(input())
^
main.c:1:5: error: expected expression
N = int(input())
    ^
main.c:8:29: error: expected ';' after top level declarator
        print('Desordenado')
                            ^
                            ;
1 warning and 2 errors generated.

                    
#12
Error de compilación
                      main.c:1:1: warning: type specifier missing, defaults to 'int' [-Wimplicit-int]
N = int(input())
^
main.c:1:5: error: expected expression
N = int(input())
    ^
main.c:8:29: error: expected ';' after top level declarator
        print('Desordenado')
                            ^
                            ;
1 warning and 2 errors generated.

                    
Puntos totales: 0 / 100

Código

N = int(input())
numeros = [int(n) for n in input().split()]

if len(numeros) == N:
    if sorted(numeros) == numeros:
        print('Ordenado')
    else:
        print('Desordenado')