結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー shinwisteriashinwisteria
提出日時 2018-03-04 15:28:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 568 ms / 5,000 ms
コード長 392 bytes
コンパイル時間 3,401 ms
コンパイル使用メモリ 74,504 KB
実行使用メモリ 47,936 KB
最終ジャッジ日時 2024-06-26 08:24:38
合計ジャッジ時間 12,313 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 213 ms
45,420 KB
testcase_01 AC 548 ms
47,696 KB
testcase_02 AC 131 ms
40,956 KB
testcase_03 AC 135 ms
41,192 KB
testcase_04 AC 134 ms
41,144 KB
testcase_05 AC 568 ms
47,936 KB
testcase_06 AC 136 ms
41,068 KB
testcase_07 AC 134 ms
41,148 KB
testcase_08 AC 132 ms
40,996 KB
testcase_09 AC 134 ms
41,128 KB
testcase_10 AC 134 ms
41,328 KB
testcase_11 AC 134 ms
41,100 KB
testcase_12 AC 133 ms
41,144 KB
testcase_13 AC 130 ms
41,296 KB
testcase_14 AC 461 ms
47,612 KB
testcase_15 AC 339 ms
47,448 KB
testcase_16 AC 500 ms
47,772 KB
testcase_17 AC 293 ms
47,388 KB
testcase_18 AC 465 ms
47,784 KB
testcase_19 AC 439 ms
47,568 KB
testcase_20 AC 539 ms
47,620 KB
testcase_21 AC 201 ms
43,092 KB
testcase_22 AC 355 ms
47,388 KB
testcase_23 AC 543 ms
47,808 KB
testcase_24 AC 513 ms
47,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Scanner;
public class Con79 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int N = s.nextInt();
		int[] l = new int[6];
		for(int i = 0;i < N;i++){
			l[s.nextInt()-1]++;
		}
		s.close();

		int Level = 0;
		for(int i = 0;i < 6;i++){
			if(l[i] >= l[Level]){
				Level = i;
			}
		}
		System.out.println(Level+1);

	}

}
0