結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー YamaKasaYamaKasa
提出日時 2018-04-21 20:59:59
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 573 bytes
コンパイル時間 2,267 ms
コンパイル使用メモリ 75,272 KB
実行使用メモリ 59,452 KB
最終ジャッジ日時 2024-06-27 05:28:09
合計ジャッジ時間 10,345 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 209 ms
57,512 KB
testcase_01 AC 547 ms
59,332 KB
testcase_02 AC 129 ms
54,256 KB
testcase_03 AC 128 ms
54,228 KB
testcase_04 AC 130 ms
54,036 KB
testcase_05 AC 524 ms
59,384 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 134 ms
54,244 KB
testcase_09 AC 130 ms
54,220 KB
testcase_10 AC 128 ms
54,224 KB
testcase_11 AC 128 ms
54,256 KB
testcase_12 AC 115 ms
52,824 KB
testcase_13 AC 128 ms
54,248 KB
testcase_14 AC 476 ms
58,992 KB
testcase_15 AC 291 ms
58,980 KB
testcase_16 AC 502 ms
59,068 KB
testcase_17 AC 296 ms
58,800 KB
testcase_18 AC 492 ms
59,292 KB
testcase_19 AC 446 ms
59,192 KB
testcase_20 AC 527 ms
59,452 KB
testcase_21 AC 200 ms
56,796 KB
testcase_22 AC 383 ms
59,408 KB
testcase_23 AC 539 ms
59,284 KB
testcase_24 AC 545 ms
59,312 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 = 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