結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー mustonmuston
提出日時 2016-06-01 15:42:59
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 682 bytes
コンパイル時間 3,538 ms
コンパイル使用メモリ 74,944 KB
実行使用メモリ 59,244 KB
最終ジャッジ日時 2024-10-08 03:57:44
合計ジャッジ時間 10,645 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 117 ms
54,136 KB
testcase_03 AC 116 ms
53,840 KB
testcase_04 WA -
testcase_05 AC 517 ms
59,100 KB
testcase_06 AC 118 ms
54,152 KB
testcase_07 AC 118 ms
53,824 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 104 ms
52,620 KB
testcase_11 AC 111 ms
52,704 KB
testcase_12 WA -
testcase_13 AC 120 ms
53,816 KB
testcase_14 WA -
testcase_15 AC 256 ms
58,936 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 424 ms
59,208 KB
testcase_20 AC 498 ms
59,232 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

/**
 * 
 * @author 
 * No.79
 */
public class No79 {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		//評価した人数
		int[] n = new int[scan.nextInt()];
		//評価レベルの数
		int[] levelCount = new int[6];
		//最終的な評価レベル
		int level = 0;
		//評価する
		for(int i=0;i<n.length;i++){
			n[i] = scan.nextInt();
		}
		//同じ評価の数を数えていく
		for(int i=0;i<n.length;i++){
			levelCount[n[i]-1]++;
		}
		//評価レベルの多いものを出す
		for(int i=0;i<levelCount.length;i++){
			if(level<=levelCount[i]){
				level = i+1;
			}
		}
		System.out.println(level);
	}
}
0