結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-11 20:48:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 577 ms / 5,000 ms
コード長 784 bytes
コンパイル時間 2,355 ms
コンパイル使用メモリ 74,132 KB
実行使用メモリ 48,160 KB
最終ジャッジ日時 2024-06-26 07:31:23
合計ジャッジ時間 10,971 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 221 ms
45,436 KB
testcase_01 AC 570 ms
48,108 KB
testcase_02 AC 138 ms
41,008 KB
testcase_03 AC 136 ms
40,928 KB
testcase_04 AC 134 ms
41,172 KB
testcase_05 AC 488 ms
47,168 KB
testcase_06 AC 136 ms
41,132 KB
testcase_07 AC 137 ms
41,008 KB
testcase_08 AC 124 ms
40,316 KB
testcase_09 AC 139 ms
41,092 KB
testcase_10 AC 139 ms
41,216 KB
testcase_11 AC 122 ms
40,296 KB
testcase_12 AC 121 ms
40,160 KB
testcase_13 AC 139 ms
41,484 KB
testcase_14 AC 465 ms
47,808 KB
testcase_15 AC 319 ms
47,408 KB
testcase_16 AC 498 ms
48,160 KB
testcase_17 AC 298 ms
47,528 KB
testcase_18 AC 514 ms
47,920 KB
testcase_19 AC 460 ms
47,612 KB
testcase_20 AC 577 ms
48,112 KB
testcase_21 AC 208 ms
43,360 KB
testcase_22 AC 362 ms
48,060 KB
testcase_23 AC 574 ms
48,088 KB
testcase_24 AC 557 ms
47,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
        int n = koko.nextInt();
        int[] l = new int[n];
        for(int i=0; i<n; i++){
            l[i] = koko.nextInt();
        }
        Arrays.sort(l);
        int count = 0;
        int max = 0;
        int now = l[0];
        for(int i=1; i<n; i++){
            if(l[i]==l[i-1]){
                count = count+1;
                if(count>=max){
                    max=count;
                    now=l[i];
                }
            }else{
                count=0;
            }
        }
        if(max==0){
            System.out.println(l[n-1]);
        }else{
            System.out.println(now);
        }
    }
}
0