結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-09-30 19:16:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 171 ms / 5,000 ms
コード長 773 bytes
コンパイル時間 3,450 ms
コンパイル使用メモリ 75,152 KB
実行使用メモリ 49,544 KB
最終ジャッジ日時 2024-06-26 08:18:39
合計ジャッジ時間 6,724 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
38,072 KB
testcase_01 AC 171 ms
49,544 KB
testcase_02 AC 53 ms
36,528 KB
testcase_03 AC 53 ms
37,036 KB
testcase_04 AC 52 ms
36,636 KB
testcase_05 AC 171 ms
49,424 KB
testcase_06 AC 52 ms
37,128 KB
testcase_07 AC 51 ms
36,664 KB
testcase_08 AC 53 ms
36,504 KB
testcase_09 AC 54 ms
36,728 KB
testcase_10 AC 53 ms
36,616 KB
testcase_11 AC 53 ms
36,916 KB
testcase_12 AC 53 ms
36,900 KB
testcase_13 AC 53 ms
36,980 KB
testcase_14 AC 127 ms
45,392 KB
testcase_15 AC 99 ms
40,732 KB
testcase_16 AC 148 ms
45,704 KB
testcase_17 AC 90 ms
40,240 KB
testcase_18 AC 147 ms
45,436 KB
testcase_19 AC 137 ms
45,196 KB
testcase_20 AC 171 ms
48,612 KB
testcase_21 AC 58 ms
37,184 KB
testcase_22 AC 107 ms
41,388 KB
testcase_23 AC 158 ms
45,816 KB
testcase_24 AC 163 ms
46,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No79 {

	public static void main(String[] args) {
		
		try{
			BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
			int N = Integer.parseInt(br.readLine());
			int[] Hyoka = new int[6];
			
			String[] temp = br.readLine().split(" ");
			int[] temp2 = new int[N];
			
			for(int i=0; i < N; i++)
				temp2[i] = Integer.parseInt(temp[i]);
			
			for(int i=0; i < N; i++)
				Hyoka[temp2[i] - 1]++;
			
			System.out.println(getI(Hyoka));
			
		}catch(Exception e){
			e.getStackTrace();
		}
		
	}
	
	public static int getI(int[] x){
		int I = 0;
		int max = 0;
		for (int i =0; i< x.length; i++){
			if (x[i] >= max){
				max =x[i];
				I = i+1;
			}
		}
		return I;
	}
}
0