結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー 37zigen37zigen
提出日時 2016-03-12 20:36:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 587 ms / 5,000 ms
コード長 600 bytes
コンパイル時間 3,622 ms
コンパイル使用メモリ 77,116 KB
実行使用メモリ 48,856 KB
最終ジャッジ日時 2024-06-26 07:52:51
合計ジャッジ時間 12,604 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 241 ms
45,508 KB
testcase_01 AC 563 ms
48,404 KB
testcase_02 AC 151 ms
41,528 KB
testcase_03 AC 152 ms
41,564 KB
testcase_04 AC 152 ms
41,748 KB
testcase_05 AC 587 ms
48,320 KB
testcase_06 AC 138 ms
39,936 KB
testcase_07 AC 148 ms
41,652 KB
testcase_08 AC 150 ms
41,208 KB
testcase_09 AC 150 ms
41,412 KB
testcase_10 AC 150 ms
41,464 KB
testcase_11 AC 136 ms
41,572 KB
testcase_12 AC 150 ms
41,224 KB
testcase_13 AC 148 ms
41,796 KB
testcase_14 AC 471 ms
47,964 KB
testcase_15 AC 320 ms
48,856 KB
testcase_16 AC 514 ms
47,952 KB
testcase_17 AC 317 ms
47,828 KB
testcase_18 AC 515 ms
48,368 KB
testcase_19 AC 466 ms
47,668 KB
testcase_20 AC 523 ms
48,192 KB
testcase_21 AC 224 ms
43,940 KB
testcase_22 AC 385 ms
47,828 KB
testcase_23 AC 558 ms
48,468 KB
testcase_24 AC 561 ms
48,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package 練習;
import java.util.Arrays;
import java.util.Date;
import java.util.Scanner;
public class main{
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		long exec_time=new Date().getTime();
		int n=sc.nextInt();
		int[] List=new int[n];
		int[] Level=new int[6];
		Arrays.fill(Level, 0);
		for(int i=0;i<n;i++){
			int a=sc.nextInt();
			Level[a-1]++;
		}
		int max=0;
		int flag=0;
		for(int i=0;i<6;i++){
			if(max<=Level[i]){
				max=Level[i];
				flag=i+1;	
			}
		}
		System.out.println(flag);
		System.err.println(new Date().getTime()-exec_time+"ms");
	}
}

0