結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー ぴろずぴろず
提出日時 2014-12-05 11:30:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 562 ms / 5,000 ms
コード長 417 bytes
コンパイル時間 2,205 ms
コンパイル使用メモリ 74,584 KB
実行使用メモリ 47,956 KB
最終ジャッジ日時 2024-06-26 07:18:28
合計ジャッジ時間 10,914 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 215 ms
45,556 KB
testcase_01 AC 559 ms
47,648 KB
testcase_02 AC 140 ms
41,184 KB
testcase_03 AC 140 ms
41,312 KB
testcase_04 AC 139 ms
41,132 KB
testcase_05 AC 562 ms
47,780 KB
testcase_06 AC 134 ms
40,960 KB
testcase_07 AC 133 ms
41,260 KB
testcase_08 AC 136 ms
41,008 KB
testcase_09 AC 122 ms
40,188 KB
testcase_10 AC 138 ms
40,812 KB
testcase_11 AC 139 ms
40,760 KB
testcase_12 AC 138 ms
41,244 KB
testcase_13 AC 135 ms
41,160 KB
testcase_14 AC 471 ms
47,408 KB
testcase_15 AC 293 ms
47,408 KB
testcase_16 AC 507 ms
47,836 KB
testcase_17 AC 283 ms
47,228 KB
testcase_18 AC 469 ms
47,956 KB
testcase_19 AC 450 ms
47,600 KB
testcase_20 AC 537 ms
47,800 KB
testcase_21 AC 206 ms
43,116 KB
testcase_22 AC 363 ms
47,484 KB
testcase_23 AC 553 ms
47,680 KB
testcase_24 AC 545 ms
47,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no079;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] c = new int[7];
		for(int i=0;i<n;i++) {
			c[sc.nextInt()]++;
		}
		int ans = 0;
		int max = 0;
		for(int i=1;i<7;i++) {
			if (max <= c[i]) {
				max = c[i];
				ans = i;
			}
		}
		System.out.println(ans);
	}

}
0