結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー kano_townkano_town
提出日時 2014-11-27 23:58:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 615 ms / 5,000 ms
コード長 632 bytes
コンパイル時間 3,650 ms
コンパイル使用メモリ 75,636 KB
実行使用メモリ 48,584 KB
最終ジャッジ日時 2024-06-26 07:15:46
合計ジャッジ時間 12,623 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 217 ms
45,724 KB
testcase_01 AC 566 ms
48,568 KB
testcase_02 AC 141 ms
41,232 KB
testcase_03 AC 123 ms
40,168 KB
testcase_04 AC 136 ms
41,728 KB
testcase_05 AC 615 ms
48,584 KB
testcase_06 AC 135 ms
41,304 KB
testcase_07 AC 134 ms
41,600 KB
testcase_08 AC 134 ms
41,484 KB
testcase_09 AC 139 ms
41,260 KB
testcase_10 AC 133 ms
41,176 KB
testcase_11 AC 139 ms
41,732 KB
testcase_12 AC 141 ms
41,268 KB
testcase_13 AC 136 ms
41,464 KB
testcase_14 AC 488 ms
48,380 KB
testcase_15 AC 306 ms
47,776 KB
testcase_16 AC 531 ms
48,432 KB
testcase_17 AC 299 ms
47,788 KB
testcase_18 AC 512 ms
48,500 KB
testcase_19 AC 461 ms
48,288 KB
testcase_20 AC 564 ms
48,552 KB
testcase_21 AC 204 ms
44,144 KB
testcase_22 AC 378 ms
48,036 KB
testcase_23 AC 557 ms
48,464 KB
testcase_24 AC 554 ms
48,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Yukicoder79 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt(), max = -1, maxIndex = 0;
		int[] L = new int[N];
		for (int i = 0; i < N; i++) L[i] = sc.nextInt();
		Arrays.sort(L);

		int buf = L[0], count = 1;
		for (int i = 1; i < N; i++) {
			if (L[i] == buf) {
				count++;
			} else {
				if (count >= max) {
					max = count;
					maxIndex = L[i - 1];
				}
				count = 1;
				buf = L[i];
			}
		}
		if (count >= max) maxIndex = L[N-1];
		System.out.println(maxIndex);

	}
}
0