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

Envío 2335

Problema 0x9d - ¿Está ordenado?

  • Autor: andreslel
  • Fecha: 2020-12-14 00:25:19 UTC (Hace alrededor de 4 años)
Caso # Resultado Tiempo Memoria
#1
Correcto
0.006 s 2 KBi
#2
Correcto
0.005 s 0 KBi
#3
Correcto
0.004 s 2 KBi
#4
Correcto
0.005 s 1 KBi
#5
Correcto
0.003 s 1 KBi
#6
Correcto
0.005 s 1 KBi
#7
Correcto
0.003 s 1 KBi
#8
Correcto
0.005 s 1 KBi
#9
Correcto
0.006 s 1 KBi
#10
Correcto
0.004 s 1 KBi
#11
Correcto
0.005 s 1 KBi
#12
Correcto
0.004 s 1 KBi
Puntos totales: 100 / 100

Código

#include<stdio.h>

int main(){
    int n;
    scanf(" %d",&n);
    int first;
    int temp;
    scanf(" %d",&first);
    int true = 1;
    for(int i = 1; i < n;++i){
        scanf(" %d",&temp);
        true = true & (first <= temp);
        first = temp;
    }
    if(true) puts("Ordenado");
    else puts("Desordenado");
    return 0;
}