結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-14 17:59:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 550 ms / 5,000 ms
コード長 420 bytes
コンパイル時間 2,420 ms
コンパイル使用メモリ 74,472 KB
実行使用メモリ 59,224 KB
最終ジャッジ日時 2024-09-13 11:32:05
合計ジャッジ時間 10,890 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 209 ms
57,328 KB
testcase_01 AC 536 ms
59,024 KB
testcase_02 AC 135 ms
53,908 KB
testcase_03 AC 135 ms
54,000 KB
testcase_04 AC 133 ms
53,972 KB
testcase_05 AC 544 ms
59,156 KB
testcase_06 AC 133 ms
54,320 KB
testcase_07 AC 135 ms
53,864 KB
testcase_08 AC 136 ms
54,092 KB
testcase_09 AC 134 ms
53,832 KB
testcase_10 AC 136 ms
54,076 KB
testcase_11 AC 137 ms
54,020 KB
testcase_12 AC 139 ms
53,820 KB
testcase_13 AC 138 ms
54,080 KB
testcase_14 AC 451 ms
59,040 KB
testcase_15 AC 298 ms
58,724 KB
testcase_16 AC 483 ms
59,004 KB
testcase_17 AC 278 ms
58,608 KB
testcase_18 AC 490 ms
58,952 KB
testcase_19 AC 419 ms
58,792 KB
testcase_20 AC 550 ms
59,072 KB
testcase_21 AC 197 ms
56,164 KB
testcase_22 AC 341 ms
58,628 KB
testcase_23 AC 522 ms
59,224 KB
testcase_24 AC 523 ms
58,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		
		int n = sc.nextInt();
		int[] ar = new int[6];
		for (int i=0; i<n; i++) ar[sc.nextInt()-1]++;
		int max = Integer.MIN_VALUE;
		for (int i=0; i<6; i++) {
			max = Math.max(max, ar[i]);
		}
		for (int i=5; i>=0; i--) {
			if (ar[i] == max) {
				System.out.println(i+1); return;
			}
		}
		
	}
}
0