jueves, 2 de noviembre de 2017

Los Saltos de Mario (158)

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package aceptaelreto;
import java.util.Scanner;
/**
 *
 * @author jnieto
 */
public class Ejercicio158 {
    public static void main(String[] args) {
        Scanner leer = new Scanner(System.in);
        int casos, muros, ar,ab,ma,ms;
 
     
        casos = leer.nextInt();
        for (int i = 0; i < casos; i++) {
            muros=leer.nextInt();
            ar=0;
            ab=0;
            if(muros>0)
            {
                ma=leer.nextInt();
            for (int j = 0; j < (muros-1); j++) {
                ms =leer.nextInt();
                if (ma>ms) ++ab;
                else if (ma<ms) ++ar;
                ma=ms;
            }
               
            }
            System.out.println(ar+" "+ab);
           
        }
       
    }
   
}

No hay comentarios: