結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー kano_townkano_town
提出日時 2014-11-28 00:15:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 560 ms / 5,000 ms
コード長 428 bytes
コンパイル時間 3,466 ms
コンパイル使用メモリ 77,344 KB
実行使用メモリ 48,100 KB
最終ジャッジ日時 2024-06-26 07:16:05
合計ジャッジ時間 12,082 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 216 ms
45,424 KB
testcase_01 AC 543 ms
48,100 KB
testcase_02 AC 135 ms
41,248 KB
testcase_03 AC 137 ms
41,344 KB
testcase_04 AC 135 ms
41,252 KB
testcase_05 AC 472 ms
46,496 KB
testcase_06 AC 133 ms
41,516 KB
testcase_07 AC 135 ms
41,264 KB
testcase_08 AC 137 ms
41,692 KB
testcase_09 AC 136 ms
41,332 KB
testcase_10 AC 138 ms
41,088 KB
testcase_11 AC 136 ms
41,140 KB
testcase_12 AC 133 ms
41,128 KB
testcase_13 AC 134 ms
41,364 KB
testcase_14 AC 458 ms
47,640 KB
testcase_15 AC 291 ms
47,348 KB
testcase_16 AC 499 ms
47,968 KB
testcase_17 AC 287 ms
47,476 KB
testcase_18 AC 514 ms
47,720 KB
testcase_19 AC 466 ms
47,732 KB
testcase_20 AC 560 ms
47,964 KB
testcase_21 AC 196 ms
43,404 KB
testcase_22 AC 353 ms
47,420 KB
testcase_23 AC 544 ms
48,016 KB
testcase_24 AC 547 ms
47,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yukicoder79 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt(), max = -1, maxIndex = 0;
		int[] count = new int[6];
		for (int i = 0; i < N; i++) count[sc.nextInt()-1]++;
		for (int i = 0; i < 6; i++){
			if (count[i] >= max) {
				max = count[i];
				maxIndex = i+1;
			}
		}
		System.out.println(maxIndex);
	}
}
0