結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー papipenpapipen
提出日時 2017-04-11 19:09:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 560 ms / 5,000 ms
コード長 425 bytes
コンパイル時間 2,356 ms
コンパイル使用メモリ 74,156 KB
実行使用メモリ 48,120 KB
最終ジャッジ日時 2024-06-26 08:11:56
合計ジャッジ時間 10,937 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 211 ms
45,392 KB
testcase_01 AC 557 ms
47,920 KB
testcase_02 AC 138 ms
41,460 KB
testcase_03 AC 137 ms
41,320 KB
testcase_04 AC 123 ms
40,084 KB
testcase_05 AC 560 ms
47,676 KB
testcase_06 AC 134 ms
41,272 KB
testcase_07 AC 134 ms
41,108 KB
testcase_08 AC 135 ms
41,260 KB
testcase_09 AC 120 ms
40,308 KB
testcase_10 AC 136 ms
41,228 KB
testcase_11 AC 134 ms
41,168 KB
testcase_12 AC 138 ms
41,092 KB
testcase_13 AC 122 ms
40,128 KB
testcase_14 AC 471 ms
47,836 KB
testcase_15 AC 302 ms
47,576 KB
testcase_16 AC 503 ms
48,044 KB
testcase_17 AC 293 ms
47,360 KB
testcase_18 AC 512 ms
47,536 KB
testcase_19 AC 440 ms
47,756 KB
testcase_20 AC 546 ms
47,756 KB
testcase_21 AC 201 ms
43,368 KB
testcase_22 AC 350 ms
47,636 KB
testcase_23 AC 539 ms
48,120 KB
testcase_24 AC 556 ms
47,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class N079{
	public static void main(String args[]){
		Scanner s = new Scanner(System.in);
		int n = s.nextInt();
		int a[] = new int[6];
		int max = 0;
		for(int i = 0; i < n; i++){
			int h = s.nextInt();
			a[h - 1]++;
		}
		for(int i = 0; i < 6; i++){
			max = Math.max(max, a[i]);
		}
		for(int i = 0; i < 6; i++){
			if(a[5 - i] == max){
				System.out.println(6 - i);
				break;
			}
		}
	}
}
0