fork download
  1. import java.util.*;
  2. import java.lang.*;
  3. import java.io.*;
  4.  
  5. public class Main {
  6.  
  7. public static void main (String[] args) throws IOException {
  8. StringBuilder sb = new StringBuilder();
  9. int N = Integer.parseInt(br.readLine());
  10.  
  11. String[] arr = new String[N];
  12. for(int i=0;i<N;i++){
  13. arr[i] = br.readLine();
  14. }
  15.  
  16. String[] cmp = arr.clone();
  17. String[] asc = arr.clone();
  18. String[] desc = arr.clone();
  19. Arrays.sort(asc,Comparator.naturalOrder());
  20. Arrays.sort(desc,Comparator.reverseOrder());
  21.  
  22. String c = String.join(" ", cmp);
  23. String a = String.join(" ", asc);
  24. String d = String.join(" ", desc);
  25.  
  26. if (c.equals(a)){
  27. System.out.println("INCREASING");
  28. } else if (c.equals(d)) {
  29. System.out.println("DECREASING");
  30. } else {
  31. System.out.println("Neither");
  32. }
  33.  
  34.  
  35. }
  36. }
Success #stdin #stdout 0.09s 55124KB
stdin
5
JOE
BOB
ANDY
AL
ADAM
stdout
DECREASING