結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー YamaKasaYamaKasa
提出日時 2018-04-21 21:01:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 562 ms / 5,000 ms
コード長 577 bytes
コンパイル時間 1,966 ms
コンパイル使用メモリ 74,516 KB
実行使用メモリ 48,664 KB
最終ジャッジ日時 2024-06-27 05:28:27
合計ジャッジ時間 10,368 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 202 ms
45,412 KB
testcase_01 AC 529 ms
48,296 KB
testcase_02 AC 129 ms
41,308 KB
testcase_03 AC 130 ms
41,816 KB
testcase_04 AC 127 ms
41,016 KB
testcase_05 AC 562 ms
48,376 KB
testcase_06 AC 126 ms
41,720 KB
testcase_07 AC 132 ms
41,520 KB
testcase_08 AC 136 ms
40,976 KB
testcase_09 AC 135 ms
41,452 KB
testcase_10 AC 135 ms
41,544 KB
testcase_11 AC 137 ms
41,768 KB
testcase_12 AC 138 ms
41,552 KB
testcase_13 AC 133 ms
41,120 KB
testcase_14 AC 479 ms
48,264 KB
testcase_15 AC 331 ms
47,692 KB
testcase_16 AC 509 ms
48,532 KB
testcase_17 AC 286 ms
47,468 KB
testcase_18 AC 502 ms
48,084 KB
testcase_19 AC 426 ms
48,124 KB
testcase_20 AC 534 ms
48,144 KB
testcase_21 AC 193 ms
43,484 KB
testcase_22 AC 342 ms
47,880 KB
testcase_23 AC 520 ms
48,664 KB
testcase_24 AC 532 ms
48,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int []L = new int[N];
		for(int i = 0; i < N; i++) {
			L[i] = scan.nextInt();
		}
		scan.close();
		Arrays.sort(L);
		int ans = L[0];
		int temp = L[0];
		int cnt1 = 1;
		int cnt2 = 1;
		for(int i = 1; i < N; i++) {
			if(temp == L[i]) {
				cnt1 ++;
			}else {
				temp = L[i];
				cnt1 = 1;
			}
			if(cnt1 >= cnt2) {
				cnt2 = cnt1;
				ans = L[i];
			}
		}
		System.out.println(ans);
	}
}
0