結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー mustonmuston
提出日時 2016-06-01 16:10:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 595 ms / 5,000 ms
コード長 694 bytes
コンパイル時間 3,760 ms
コンパイル使用メモリ 74,236 KB
実行使用メモリ 48,296 KB
最終ジャッジ日時 2024-06-26 07:56:41
合計ジャッジ時間 12,486 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 219 ms
44,896 KB
testcase_01 AC 535 ms
47,952 KB
testcase_02 AC 135 ms
40,936 KB
testcase_03 AC 138 ms
41,324 KB
testcase_04 AC 136 ms
40,952 KB
testcase_05 AC 595 ms
48,128 KB
testcase_06 AC 137 ms
40,952 KB
testcase_07 AC 137 ms
41,100 KB
testcase_08 AC 136 ms
40,952 KB
testcase_09 AC 134 ms
40,960 KB
testcase_10 AC 137 ms
41,248 KB
testcase_11 AC 138 ms
41,168 KB
testcase_12 AC 136 ms
41,508 KB
testcase_13 AC 137 ms
40,912 KB
testcase_14 AC 461 ms
47,700 KB
testcase_15 AC 298 ms
47,380 KB
testcase_16 AC 515 ms
48,068 KB
testcase_17 AC 318 ms
47,396 KB
testcase_18 AC 493 ms
48,204 KB
testcase_19 AC 440 ms
47,784 KB
testcase_20 AC 562 ms
48,296 KB
testcase_21 AC 204 ms
43,456 KB
testcase_22 AC 365 ms
47,688 KB
testcase_23 AC 515 ms
48,236 KB
testcase_24 AC 554 ms
48,276 KB
権限があれば一括ダウンロードができます

ソースコード

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(levelCount[level]<=levelCount[i]){
				level = i;
			}
		}
		System.out.println(level+1);
	}
}
0