結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 209 ms
45,040 KB
testcase_01 AC 552 ms
47,764 KB
testcase_02 AC 115 ms
39,952 KB
testcase_03 AC 127 ms
41,092 KB
testcase_04 AC 134 ms
41,544 KB
testcase_05 AC 516 ms
47,784 KB
testcase_06 AC 127 ms
41,152 KB
testcase_07 AC 128 ms
41,424 KB
testcase_08 AC 130 ms
41,500 KB
testcase_09 AC 128 ms
41,464 KB
testcase_10 AC 124 ms
41,544 KB
testcase_11 AC 124 ms
41,480 KB
testcase_12 AC 135 ms
41,304 KB
testcase_13 AC 144 ms
41,672 KB
testcase_14 AC 506 ms
47,804 KB
testcase_15 AC 290 ms
47,260 KB
testcase_16 AC 484 ms
47,888 KB
testcase_17 AC 295 ms
47,640 KB
testcase_18 AC 500 ms
48,112 KB
testcase_19 AC 424 ms
47,724 KB
testcase_20 AC 531 ms
47,924 KB
testcase_21 AC 196 ms
43,420 KB
testcase_22 AC 339 ms
47,920 KB
testcase_23 AC 487 ms
48,244 KB
testcase_24 AC 529 ms
48,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{

	static final Scanner s=new Scanner(System.in);

	public static void main(String args[]){
		int n=s.nextInt(),l[]=new int[7];
		for(int i=0;i<n;i++) {
			l[s.nextInt()]++;
		}
		int res=0,v=0;
		for(int i=0;i<l.length;i++) {
			if(v<=l[i]) {
				res=Math.max(res,i);
				v=l[i];
			}
		}
		System.out.println(res);
	}
}
0