結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-20 16:19:13
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 468 bytes
コンパイル時間 2,249 ms
コンパイル使用メモリ 74,064 KB
実行使用メモリ 57,444 KB
最終ジャッジ日時 2024-10-02 06:12:32
合計ジャッジ時間 11,147 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 532 ms
48,028 KB
testcase_02 AC 131 ms
41,456 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 544 ms
48,092 KB
testcase_06 AC 129 ms
41,112 KB
testcase_07 AC 130 ms
41,116 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 133 ms
41,092 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 450 ms
47,680 KB
testcase_15 AC 294 ms
47,268 KB
testcase_16 AC 485 ms
47,776 KB
testcase_17 AC 287 ms
47,596 KB
testcase_18 AC 499 ms
48,012 KB
testcase_19 AC 433 ms
47,760 KB
testcase_20 AC 541 ms
47,884 KB
testcase_21 AC 195 ms
43,736 KB
testcase_22 AC 344 ms
47,788 KB
testcase_23 AC 534 ms
47,832 KB
testcase_24 AC 532 ms
47,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int N = sc.nextInt();
    int[] level = new int[7];
    for(int i = 0; i < N; i++) {
      level[sc.nextInt()]++;
    }
    int max = 0;
    for(int i = 0; i < 7; i++) {
      max = Math.max(max, level[i]);
    }
    int ans = 0;
    for(int i = 6; i >= 0; i--) {
      if(level[i] == max) ans = i;
    }
    System.out.println(ans);
  }
}
0