結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー TatsuDXTatsuDX
提出日時 2016-09-08 23:44:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 593 ms / 5,000 ms
コード長 387 bytes
コンパイル時間 4,265 ms
コンパイル使用メモリ 75,028 KB
実行使用メモリ 48,036 KB
最終ジャッジ日時 2024-06-26 08:03:35
合計ジャッジ時間 12,536 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 222 ms
45,380 KB
testcase_01 AC 560 ms
47,892 KB
testcase_02 AC 140 ms
41,368 KB
testcase_03 AC 137 ms
41,140 KB
testcase_04 AC 137 ms
41,380 KB
testcase_05 AC 561 ms
47,900 KB
testcase_06 AC 139 ms
41,480 KB
testcase_07 AC 136 ms
41,448 KB
testcase_08 AC 140 ms
41,276 KB
testcase_09 AC 139 ms
41,408 KB
testcase_10 AC 138 ms
41,188 KB
testcase_11 AC 137 ms
41,328 KB
testcase_12 AC 136 ms
41,344 KB
testcase_13 AC 136 ms
41,712 KB
testcase_14 AC 457 ms
47,956 KB
testcase_15 AC 294 ms
47,512 KB
testcase_16 AC 503 ms
47,744 KB
testcase_17 AC 329 ms
47,476 KB
testcase_18 AC 493 ms
47,664 KB
testcase_19 AC 438 ms
47,676 KB
testcase_20 AC 556 ms
47,972 KB
testcase_21 AC 197 ms
43,828 KB
testcase_22 AC 395 ms
47,556 KB
testcase_23 AC 549 ms
48,036 KB
testcase_24 AC 593 ms
47,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		int n = sc.nextInt(), max = 0, t;
		int[] m = new int[7];
		for(int i = 0; i < n; i++){
			t = sc.nextInt();
			m[t]++;
			max = Math.max(max, m[t]);
		}
		for(int i = 6; i > 0; i--){
			if(m[i] == max){
				System.out.println(i);
				return;
			}
		}
	}
}
0