結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー ohagi_1182ohagi_1182
提出日時 2017-10-20 18:42:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 595 ms / 5,000 ms
コード長 683 bytes
コンパイル時間 2,350 ms
コンパイル使用メモリ 76,528 KB
実行使用メモリ 48,752 KB
最終ジャッジ日時 2024-06-26 08:20:44
合計ジャッジ時間 11,413 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 228 ms
45,960 KB
testcase_01 AC 595 ms
48,508 KB
testcase_02 AC 139 ms
41,316 KB
testcase_03 AC 138 ms
41,408 KB
testcase_04 AC 135 ms
41,108 KB
testcase_05 AC 577 ms
48,504 KB
testcase_06 AC 132 ms
41,504 KB
testcase_07 AC 137 ms
41,664 KB
testcase_08 AC 138 ms
41,272 KB
testcase_09 AC 133 ms
41,128 KB
testcase_10 AC 139 ms
41,152 KB
testcase_11 AC 137 ms
41,496 KB
testcase_12 AC 138 ms
41,216 KB
testcase_13 AC 136 ms
41,440 KB
testcase_14 AC 485 ms
48,144 KB
testcase_15 AC 322 ms
47,936 KB
testcase_16 AC 555 ms
48,752 KB
testcase_17 AC 313 ms
47,748 KB
testcase_18 AC 522 ms
48,324 KB
testcase_19 AC 474 ms
48,248 KB
testcase_20 AC 573 ms
48,328 KB
testcase_21 AC 208 ms
43,700 KB
testcase_22 AC 370 ms
47,792 KB
testcase_23 AC 569 ms
48,436 KB
testcase_24 AC 584 ms
48,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] l = new int[n];
		for(int i = 0 ; i < n ; i++) {
			l[i] = sc.nextInt();
		}
		Map<Integer, Integer> map = new HashMap<>();
		for(int i = 0 ; i < n ; i++) {
			map.put(l[i], 0);
		}
		for(int i = 0 ; i < n ; i++) {
			map.put(l[i], map.get(l[i]) + 1);
		}
		int max = -1001001001;
		int ans = 0;
		for(int key : map.keySet()) {
			if(max < map.get(key) || max == map.get(key) && ans < key) {
				ans = key;
				max = map.get(key);
			}
		}
		System.out.println(ans);
 	}
}

0