using System; using System.Collections.Generic; using System.Linq; namespace lecture { class MainClass { public static void Main(string[] args) { int N = int.Parse(Console.ReadLine()); int[] L = Console.ReadLine().Trim().Split(' ').Select(x => int.Parse(x)).ToArray(); // わざと1つ多めに宣言する 1〜6を使いたい int[] counts = new int[7]; // それぞれの数字が何個あるかカウントする for (int i = 0; i < L.Length; i++) { int j = L[i]; counts[ j ]++; } // カウントの最大値を求める int max = 0; int index = 0; // ループを逆にして ループを1つだけにする for (int i = 6; i >= 1 ; i--){ if (max < counts[i]){ max = counts[i]; index = i; } } Console.WriteLine(index); } } }