結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー mits58mits58
提出日時 2016-05-14 13:08:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 593 ms / 5,000 ms
コード長 456 bytes
コンパイル時間 2,249 ms
コンパイル使用メモリ 74,904 KB
実行使用メモリ 47,996 KB
最終ジャッジ日時 2024-06-26 07:55:46
合計ジャッジ時間 11,248 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 221 ms
45,392 KB
testcase_01 AC 564 ms
47,936 KB
testcase_02 AC 135 ms
41,056 KB
testcase_03 AC 136 ms
40,952 KB
testcase_04 AC 136 ms
40,900 KB
testcase_05 AC 593 ms
47,880 KB
testcase_06 AC 135 ms
41,176 KB
testcase_07 AC 133 ms
40,688 KB
testcase_08 AC 134 ms
41,272 KB
testcase_09 AC 135 ms
41,176 KB
testcase_10 AC 134 ms
41,316 KB
testcase_11 AC 135 ms
41,208 KB
testcase_12 AC 137 ms
41,120 KB
testcase_13 AC 125 ms
40,136 KB
testcase_14 AC 475 ms
47,520 KB
testcase_15 AC 334 ms
47,324 KB
testcase_16 AC 542 ms
47,560 KB
testcase_17 AC 318 ms
46,992 KB
testcase_18 AC 539 ms
47,620 KB
testcase_19 AC 458 ms
47,556 KB
testcase_20 AC 559 ms
47,996 KB
testcase_21 AC 201 ms
42,968 KB
testcase_22 AC 382 ms
47,408 KB
testcase_23 AC 562 ms
47,376 KB
testcase_24 AC 526 ms
47,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
	static long mod=(long)10E9;
    public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        while(sc.hasNext()){
        	int n=sc.nextInt();
        	int[] l=new int[6];
        	for(int i=0;i<n;i++) l[sc.nextInt()-1]++;
        	int res=0;
        	int max=0;
        	for(int i=0;i<6;i++) if(max<=l[i]){ res=i+1; max=l[i];}
        	System.out.println(res);
        }
    }
}
0