結果
問題 | No.79 過小評価ダメ・ゼッタイ |
ユーザー | muston |
提出日時 | 2016-06-01 16:09:15 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 810 bytes |
コンパイル時間 | 3,398 ms |
コンパイル使用メモリ | 76,488 KB |
実行使用メモリ | 61,356 KB |
最終ジャッジ日時 | 2024-10-08 05:07:37 |
合計ジャッジ時間 | 12,325 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
ソースコード
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++){ System.out.println("レベルカウント"+levelCount[i]); System.out.println("レベル"+levelCount[level]); if(levelCount[level]<=levelCount[i]){ level = i; } } System.out.println(level+1); } }