結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー kou6839kou6839
提出日時 2014-11-30 23:51:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 561 ms / 5,000 ms
コード長 532 bytes
コンパイル時間 2,258 ms
コンパイル使用メモリ 74,172 KB
実行使用メモリ 59,340 KB
最終ジャッジ日時 2024-06-26 07:16:58
合計ジャッジ時間 11,099 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 219 ms
57,448 KB
testcase_01 AC 548 ms
59,056 KB
testcase_02 AC 135 ms
54,144 KB
testcase_03 AC 137 ms
53,968 KB
testcase_04 AC 134 ms
53,800 KB
testcase_05 AC 561 ms
59,120 KB
testcase_06 AC 132 ms
53,952 KB
testcase_07 AC 135 ms
53,908 KB
testcase_08 AC 135 ms
54,092 KB
testcase_09 AC 135 ms
53,828 KB
testcase_10 AC 134 ms
56,336 KB
testcase_11 AC 133 ms
53,940 KB
testcase_12 AC 132 ms
54,208 KB
testcase_13 AC 137 ms
53,708 KB
testcase_14 AC 472 ms
59,064 KB
testcase_15 AC 313 ms
58,564 KB
testcase_16 AC 499 ms
58,996 KB
testcase_17 AC 291 ms
58,488 KB
testcase_18 AC 494 ms
59,024 KB
testcase_19 AC 436 ms
59,056 KB
testcase_20 AC 542 ms
59,340 KB
testcase_21 AC 202 ms
56,368 KB
testcase_22 AC 357 ms
58,696 KB
testcase_23 AC 539 ms
59,232 KB
testcase_24 AC 542 ms
59,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.*;
 
public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int[] ans= new int[7];
        for(int i=0;i<n;i++){
        	int t= sc.nextInt();
        	ans[t]++;
        }
        int anss=0;
        int max=0;
        for(int i=1;i<=6;i++){
        	if(ans[i]>=max) {
        		anss=i;
        		max=ans[i];
        	}
        }
        System.out.println(anss);
    }
}
0