結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー uafr_csuafr_cs
提出日時 2015-05-15 02:45:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 565 ms / 5,000 ms
コード長 484 bytes
コンパイル時間 2,351 ms
コンパイル使用メモリ 74,648 KB
実行使用メモリ 47,692 KB
最終ジャッジ日時 2024-06-26 07:34:29
合計ジャッジ時間 10,735 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 214 ms
45,480 KB
testcase_01 AC 527 ms
47,656 KB
testcase_02 AC 131 ms
40,888 KB
testcase_03 AC 128 ms
40,832 KB
testcase_04 AC 129 ms
41,208 KB
testcase_05 AC 565 ms
47,692 KB
testcase_06 AC 112 ms
40,216 KB
testcase_07 AC 128 ms
41,144 KB
testcase_08 AC 130 ms
41,104 KB
testcase_09 AC 129 ms
41,308 KB
testcase_10 AC 130 ms
41,036 KB
testcase_11 AC 131 ms
41,308 KB
testcase_12 AC 113 ms
40,340 KB
testcase_13 AC 128 ms
40,740 KB
testcase_14 AC 415 ms
47,640 KB
testcase_15 AC 303 ms
46,960 KB
testcase_16 AC 523 ms
47,516 KB
testcase_17 AC 276 ms
47,272 KB
testcase_18 AC 436 ms
47,548 KB
testcase_19 AC 438 ms
47,504 KB
testcase_20 AC 524 ms
47,584 KB
testcase_21 AC 196 ms
43,512 KB
testcase_22 AC 355 ms
47,408 KB
testcase_23 AC 511 ms
47,440 KB
testcase_24 AC 562 ms
47,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		final int SIZE = 6;
		final int N = sc.nextInt();
		int[] counts = new int[SIZE];
		for(int i = 0; i < N; i++){
			counts[sc.nextInt() - 1]++;
		}
		
		int max = 0;
		for(int i = 0; i < SIZE; i++){
			if(counts[max] <= counts[i]){
				max = i;
			}
		}
		
		System.out.println(max + 1);
		
	}
	
}
0