結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー spaciaspacia
提出日時 2015-12-29 17:45:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 169 ms / 5,000 ms
コード長 625 bytes
コンパイル時間 2,685 ms
コンパイル使用メモリ 74,656 KB
実行使用メモリ 46,660 KB
最終ジャッジ日時 2024-06-26 07:47:05
合計ジャッジ時間 5,585 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
37,640 KB
testcase_01 AC 162 ms
46,516 KB
testcase_02 AC 54 ms
36,840 KB
testcase_03 AC 55 ms
36,800 KB
testcase_04 AC 53 ms
37,068 KB
testcase_05 AC 169 ms
46,480 KB
testcase_06 AC 53 ms
36,928 KB
testcase_07 AC 52 ms
36,916 KB
testcase_08 AC 54 ms
36,844 KB
testcase_09 AC 52 ms
36,612 KB
testcase_10 AC 53 ms
36,988 KB
testcase_11 AC 55 ms
36,968 KB
testcase_12 AC 55 ms
36,988 KB
testcase_13 AC 53 ms
37,064 KB
testcase_14 AC 132 ms
45,564 KB
testcase_15 AC 103 ms
40,628 KB
testcase_16 AC 147 ms
46,660 KB
testcase_17 AC 99 ms
40,676 KB
testcase_18 AC 144 ms
46,404 KB
testcase_19 AC 129 ms
45,368 KB
testcase_20 AC 165 ms
46,592 KB
testcase_21 AC 61 ms
37,256 KB
testcase_22 AC 108 ms
41,616 KB
testcase_23 AC 150 ms
46,272 KB
testcase_24 AC 162 ms
45,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.math.*;

class Main79 {
	
	public static void out (Object out) {
		System.out.println(out);
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		int n = Integer.parseInt(br.readLine());
		int[] nums = new int[7];
		String[] line = br.readLine().split(" ");
		
		for (int i = 0; i < n; i++)
			nums[Integer.parseInt(line[i])]++;
		
		int ans = 0, max = 0;
		for (int i = 1; i <= 6; i++) {
			if (max <= nums[i]) {
				max = nums[i];
				ans = i;
			}
		}
		
		out(ans);
		
	}
}
0