結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー rf141rf141
提出日時 2015-08-10 21:33:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 560 ms / 5,000 ms
コード長 493 bytes
コンパイル時間 3,217 ms
コンパイル使用メモリ 74,628 KB
実行使用メモリ 48,208 KB
最終ジャッジ日時 2024-06-26 07:41:47
合計ジャッジ時間 11,473 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 197 ms
45,712 KB
testcase_01 AC 541 ms
48,116 KB
testcase_02 AC 115 ms
40,352 KB
testcase_03 AC 129 ms
41,712 KB
testcase_04 AC 128 ms
41,236 KB
testcase_05 AC 549 ms
48,012 KB
testcase_06 AC 130 ms
41,032 KB
testcase_07 AC 128 ms
41,544 KB
testcase_08 AC 128 ms
41,392 KB
testcase_09 AC 113 ms
40,128 KB
testcase_10 AC 130 ms
41,432 KB
testcase_11 AC 126 ms
41,880 KB
testcase_12 AC 126 ms
41,528 KB
testcase_13 AC 117 ms
40,636 KB
testcase_14 AC 450 ms
47,812 KB
testcase_15 AC 306 ms
47,600 KB
testcase_16 AC 473 ms
48,072 KB
testcase_17 AC 288 ms
47,288 KB
testcase_18 AC 458 ms
47,664 KB
testcase_19 AC 408 ms
47,924 KB
testcase_20 AC 560 ms
48,208 KB
testcase_21 AC 195 ms
43,596 KB
testcase_22 AC 356 ms
47,688 KB
testcase_23 AC 516 ms
47,980 KB
testcase_24 AC 529 ms
48,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Evaluation{
    public static void main(String... args){
        Scanner scan = new Scanner(System.in);
        int N = scan.nextInt();
        int[] counts = new int[6];
        for(int i = 0; i < N; i++){
            counts[scan.nextInt() - 1]++;
        }
        int max = 0;
        for(int i = 0; i < 6; i++){
            if(counts[max] <= counts[i]){
                max = i;
            }
        }   
        System.out.println(max + 1);      
    }
}
0