結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー soujikisoujiki
提出日時 2015-04-29 20:28:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 583 ms / 5,000 ms
コード長 409 bytes
コンパイル時間 3,636 ms
コンパイル使用メモリ 78,200 KB
実行使用メモリ 59,260 KB
最終ジャッジ日時 2024-06-26 07:33:11
合計ジャッジ時間 11,854 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 210 ms
57,192 KB
testcase_01 AC 583 ms
59,016 KB
testcase_02 AC 134 ms
54,124 KB
testcase_03 AC 134 ms
53,820 KB
testcase_04 AC 134 ms
54,192 KB
testcase_05 AC 579 ms
59,260 KB
testcase_06 AC 134 ms
54,064 KB
testcase_07 AC 135 ms
54,028 KB
testcase_08 AC 140 ms
54,128 KB
testcase_09 AC 134 ms
54,068 KB
testcase_10 AC 135 ms
54,060 KB
testcase_11 AC 138 ms
53,928 KB
testcase_12 AC 135 ms
53,904 KB
testcase_13 AC 132 ms
53,936 KB
testcase_14 AC 445 ms
59,052 KB
testcase_15 AC 302 ms
59,068 KB
testcase_16 AC 501 ms
59,204 KB
testcase_17 AC 276 ms
58,612 KB
testcase_18 AC 491 ms
58,836 KB
testcase_19 AC 436 ms
58,916 KB
testcase_20 AC 555 ms
58,980 KB
testcase_21 AC 199 ms
56,600 KB
testcase_22 AC 348 ms
58,792 KB
testcase_23 AC 533 ms
59,132 KB
testcase_24 AC 550 ms
59,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Yukicoder_79{
	public static void main(String[] args){
		Scanner stdIn = new Scanner(System.in);
		int N = stdIn.nextInt();
		int[] judg = new int[7];
		for(int i=0;i<N;i++){
			int x = stdIn.nextInt();
			judg[x]++;
		}
		int count = 0;
		int num = 0;
		for(int i=1;i<7;i++){
			if(count<=judg[i]){
				count = judg[i];
				num = i;
			}
		}
		System.out.println(num);
	}
}
0