結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー SuunnSuunn
提出日時 2018-11-20 06:02:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 472 ms / 5,000 ms
コード長 452 bytes
コンパイル時間 1,879 ms
コンパイル使用メモリ 74,484 KB
実行使用メモリ 59,436 KB
最終ジャッジ日時 2024-06-06 21:06:23
合計ジャッジ時間 9,343 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 187 ms
57,392 KB
testcase_01 AC 435 ms
59,204 KB
testcase_02 AC 101 ms
52,680 KB
testcase_03 AC 110 ms
53,980 KB
testcase_04 AC 102 ms
52,600 KB
testcase_05 AC 472 ms
59,132 KB
testcase_06 AC 112 ms
53,924 KB
testcase_07 AC 95 ms
52,700 KB
testcase_08 AC 103 ms
52,812 KB
testcase_09 AC 114 ms
54,004 KB
testcase_10 AC 101 ms
52,944 KB
testcase_11 AC 99 ms
52,384 KB
testcase_12 AC 105 ms
52,768 KB
testcase_13 AC 111 ms
53,768 KB
testcase_14 AC 364 ms
59,020 KB
testcase_15 AC 249 ms
58,696 KB
testcase_16 AC 392 ms
59,088 KB
testcase_17 AC 254 ms
58,540 KB
testcase_18 AC 397 ms
58,908 KB
testcase_19 AC 354 ms
58,644 KB
testcase_20 AC 451 ms
58,880 KB
testcase_21 AC 166 ms
56,632 KB
testcase_22 AC 306 ms
59,040 KB
testcase_23 AC 429 ms
58,988 KB
testcase_24 AC 432 ms
59,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
	

public class Main{
	
	
	public static void main(String args[])throws Exception{
		
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int[] level = new int[7];
		int max = 0;
		for(int i=0;i<N;i++){
			int L = sc.nextInt();
			level[L]++;
		}
		for(int i=1;i<=6;i++){
			max = Math.max(max, level[i]);
		}
		for(int i=6;i>=1;i--){
			if(level[i]==max){
				System.out.println(i);
				return;
			}
		}
		
	}
}
0