結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー h_tyokinuhatah_tyokinuhata
提出日時 2016-02-24 03:47:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 623 ms / 5,000 ms
コード長 575 bytes
コンパイル時間 2,171 ms
コンパイル使用メモリ 74,108 KB
実行使用メモリ 48,508 KB
最終ジャッジ日時 2024-06-26 07:52:09
合計ジャッジ時間 11,055 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 214 ms
45,408 KB
testcase_01 AC 575 ms
48,384 KB
testcase_02 AC 135 ms
41,352 KB
testcase_03 AC 135 ms
41,156 KB
testcase_04 AC 136 ms
41,048 KB
testcase_05 AC 566 ms
48,408 KB
testcase_06 AC 134 ms
41,464 KB
testcase_07 AC 133 ms
41,252 KB
testcase_08 AC 136 ms
41,496 KB
testcase_09 AC 135 ms
41,228 KB
testcase_10 AC 141 ms
40,936 KB
testcase_11 AC 132 ms
41,092 KB
testcase_12 AC 136 ms
41,544 KB
testcase_13 AC 131 ms
41,228 KB
testcase_14 AC 466 ms
48,160 KB
testcase_15 AC 309 ms
47,804 KB
testcase_16 AC 482 ms
48,508 KB
testcase_17 AC 311 ms
48,192 KB
testcase_18 AC 533 ms
48,280 KB
testcase_19 AC 499 ms
48,236 KB
testcase_20 AC 570 ms
48,376 KB
testcase_21 AC 202 ms
43,372 KB
testcase_22 AC 365 ms
48,168 KB
testcase_23 AC 553 ms
48,276 KB
testcase_24 AC 623 ms
48,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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();
		}
		
		Arrays.sort(L);
		
		int cnt = 0, max = 0, ans = 0;
		
		for(int i = 0; i < N; i++) {
			for(int j = i; j < N; j++) {
				if(L[i] == L[j]) {
					cnt++;
				} else {
					break;
				}
			}
			
			if(cnt >= max && L[i] > ans) {
				max = cnt;
				ans = L[i];
			}
			
			i+=cnt - 1;
			cnt = 0;
		}
		
		System.out.println(ans);
	}
}
0