import java.util.Scanner; import java.util.InputMismatchException; public class Underestimate { public static void main(String[] args){ Scanner scanner = new Scanner(System.in); try{ int N = scanner.nextInt(); int[] W = new int[6]; if(N < 1 || N > Math.pow(10, 6)){ System.out.println("Nは1から1000000の範囲で入力してください"); System.exit(0); } for(int i = 0 ; i < N ; i++){ int L = scanner.nextInt(); if(L < 1 || L > 6){ System.out.println("Lは1から6の範囲で入力してください"); System.exit(0); } W[L-1]++; } int MaxLevel = 0; for(int j = 0 ; j < W.length ; j++){ if(W[MaxLevel] <= W[j]){ MaxLevel = j; }else{ //何も処理はしない } } System.out.println(MaxLevel+1); }catch(InputMismatchException e){ System.out.println("数値を入力してください"); }catch(Exception E){ System.out.println("予期せぬエラーです"); } } }