結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-09 19:06:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 555 ms / 5,000 ms
コード長 392 bytes
コンパイル時間 2,892 ms
コンパイル使用メモリ 74,084 KB
実行使用メモリ 47,952 KB
最終ジャッジ日時 2024-06-26 08:23:26
合計ジャッジ時間 11,445 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 216 ms
45,284 KB
testcase_01 AC 544 ms
47,952 KB
testcase_02 AC 130 ms
40,920 KB
testcase_03 AC 134 ms
41,348 KB
testcase_04 AC 135 ms
41,212 KB
testcase_05 AC 497 ms
47,704 KB
testcase_06 AC 132 ms
41,200 KB
testcase_07 AC 122 ms
40,172 KB
testcase_08 AC 130 ms
41,088 KB
testcase_09 AC 117 ms
39,904 KB
testcase_10 AC 133 ms
41,100 KB
testcase_11 AC 134 ms
41,032 KB
testcase_12 AC 133 ms
41,072 KB
testcase_13 AC 135 ms
41,072 KB
testcase_14 AC 503 ms
47,716 KB
testcase_15 AC 305 ms
47,284 KB
testcase_16 AC 492 ms
47,552 KB
testcase_17 AC 280 ms
47,260 KB
testcase_18 AC 493 ms
47,720 KB
testcase_19 AC 444 ms
47,800 KB
testcase_20 AC 555 ms
47,632 KB
testcase_21 AC 205 ms
43,452 KB
testcase_22 AC 353 ms
47,236 KB
testcase_23 AC 544 ms
47,672 KB
testcase_24 AC 550 ms
47,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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