結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー koukonkokoukonko
提出日時 2015-12-10 12:50:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 165 ms / 5,000 ms
コード長 751 bytes
コンパイル時間 2,094 ms
コンパイル使用メモリ 72,932 KB
実行使用メモリ 46,964 KB
最終ジャッジ日時 2024-06-26 07:45:48
合計ジャッジ時間 5,267 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
38,032 KB
testcase_01 AC 148 ms
46,728 KB
testcase_02 AC 49 ms
37,148 KB
testcase_03 AC 50 ms
36,996 KB
testcase_04 AC 50 ms
37,172 KB
testcase_05 AC 154 ms
45,664 KB
testcase_06 AC 51 ms
37,128 KB
testcase_07 AC 49 ms
36,744 KB
testcase_08 AC 50 ms
37,040 KB
testcase_09 AC 49 ms
37,192 KB
testcase_10 AC 50 ms
36,844 KB
testcase_11 AC 49 ms
37,128 KB
testcase_12 AC 52 ms
37,192 KB
testcase_13 AC 51 ms
37,320 KB
testcase_14 AC 118 ms
45,324 KB
testcase_15 AC 97 ms
40,332 KB
testcase_16 AC 142 ms
45,672 KB
testcase_17 AC 91 ms
40,752 KB
testcase_18 AC 149 ms
46,880 KB
testcase_19 AC 126 ms
45,512 KB
testcase_20 AC 165 ms
46,608 KB
testcase_21 AC 55 ms
37,376 KB
testcase_22 AC 105 ms
41,100 KB
testcase_23 AC 162 ms
46,964 KB
testcase_24 AC 160 ms
46,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main(String[] args) {
		BufferedReader buff = new BufferedReader(new InputStreamReader(System.in));

		try {
			buff.readLine();
			String[] box = buff.readLine().split(" ");
			int[] count = new int[6];

			for(int i = 0; i < box.length; ++i){
				count[Integer.parseInt(box[i])-1]++;
			}
			int ans = 0, max = 0;
			for(int i = 0; i < 6; ++i){
				if(count[i] >= max){
					ans = i+1;
					max = count[i];
				}
			}
			System.out.println(ans);

		} catch (NumberFormatException e) {
			e.getStackTrace();
		} catch (IOException e) {
			e.getStackTrace();
		} catch (Exception e) {
			e.getStackTrace();
		}
	}
}
0