結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-20 16:20:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 558 ms / 5,000 ms
コード長 501 bytes
コンパイル時間 2,709 ms
コンパイル使用メモリ 73,728 KB
実行使用メモリ 47,900 KB
最終ジャッジ日時 2024-06-26 08:15:15
合計ジャッジ時間 10,223 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 213 ms
45,576 KB
testcase_01 AC 521 ms
47,872 KB
testcase_02 AC 112 ms
40,260 KB
testcase_03 AC 123 ms
41,368 KB
testcase_04 AC 129 ms
41,304 KB
testcase_05 AC 556 ms
47,696 KB
testcase_06 AC 124 ms
40,928 KB
testcase_07 AC 113 ms
40,132 KB
testcase_08 AC 128 ms
41,360 KB
testcase_09 AC 127 ms
41,168 KB
testcase_10 AC 127 ms
41,112 KB
testcase_11 AC 113 ms
40,196 KB
testcase_12 AC 126 ms
41,440 KB
testcase_13 AC 125 ms
41,436 KB
testcase_14 AC 430 ms
47,900 KB
testcase_15 AC 287 ms
47,360 KB
testcase_16 AC 483 ms
47,808 KB
testcase_17 AC 267 ms
47,284 KB
testcase_18 AC 454 ms
47,524 KB
testcase_19 AC 438 ms
47,796 KB
testcase_20 AC 513 ms
47,688 KB
testcase_21 AC 189 ms
43,380 KB
testcase_22 AC 341 ms
47,516 KB
testcase_23 AC 549 ms
47,668 KB
testcase_24 AC 558 ms
47,812 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;
        break;
      }
    }
    System.out.println(ans);
  }
}
0