結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー jimanojimano
提出日時 2018-01-14 16:04:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 161 ms / 5,000 ms
コード長 702 bytes
コンパイル時間 3,460 ms
コンパイル使用メモリ 73,828 KB
実行使用メモリ 46,328 KB
最終ジャッジ日時 2024-06-26 08:22:45
合計ジャッジ時間 6,575 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
38,024 KB
testcase_01 AC 156 ms
45,668 KB
testcase_02 AC 50 ms
36,928 KB
testcase_03 AC 52 ms
37,108 KB
testcase_04 AC 52 ms
36,800 KB
testcase_05 AC 161 ms
46,116 KB
testcase_06 AC 52 ms
36,748 KB
testcase_07 AC 50 ms
37,112 KB
testcase_08 AC 50 ms
36,600 KB
testcase_09 AC 52 ms
36,836 KB
testcase_10 AC 51 ms
36,816 KB
testcase_11 AC 52 ms
36,928 KB
testcase_12 AC 51 ms
36,488 KB
testcase_13 AC 51 ms
36,972 KB
testcase_14 AC 127 ms
45,644 KB
testcase_15 AC 100 ms
40,492 KB
testcase_16 AC 150 ms
45,472 KB
testcase_17 AC 99 ms
40,436 KB
testcase_18 AC 139 ms
45,348 KB
testcase_19 AC 125 ms
45,272 KB
testcase_20 AC 160 ms
45,712 KB
testcase_21 AC 57 ms
36,956 KB
testcase_22 AC 105 ms
41,068 KB
testcase_23 AC 149 ms
45,748 KB
testcase_24 AC 159 ms
46,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder.lv1;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No0082 {
	public static void main(String[] args) {
		try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {
			int N = Integer.parseInt(br.readLine());
			String[] L = br.readLine().split(" ");
			int[] level = new int[6];

			for (String s : L) {
				level[Integer.parseInt(s) - 1]++;
			}

			int max = 0;
			int maxCnt = 0;
			for (int i = 0; i < level.length; i++) {
				if (max <= level[i]) {
					max = level[i];
					maxCnt = i + 1;
				}
			}
			System.out.println(maxCnt);
		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}
0