結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー Mcpu3Mcpu3
提出日時 2018-06-22 00:23:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 511 ms / 5,000 ms
コード長 378 bytes
コンパイル時間 1,987 ms
コンパイル使用メモリ 73,644 KB
実行使用メモリ 48,284 KB
最終ジャッジ日時 2024-06-30 17:48:29
合計ジャッジ時間 9,589 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 197 ms
45,872 KB
testcase_01 AC 449 ms
47,976 KB
testcase_02 AC 115 ms
41,676 KB
testcase_03 AC 107 ms
40,416 KB
testcase_04 AC 119 ms
41,376 KB
testcase_05 AC 481 ms
48,064 KB
testcase_06 AC 116 ms
40,968 KB
testcase_07 AC 120 ms
41,292 KB
testcase_08 AC 117 ms
41,464 KB
testcase_09 AC 121 ms
41,624 KB
testcase_10 AC 118 ms
41,576 KB
testcase_11 AC 119 ms
41,296 KB
testcase_12 AC 124 ms
41,284 KB
testcase_13 AC 118 ms
41,208 KB
testcase_14 AC 415 ms
47,872 KB
testcase_15 AC 277 ms
47,768 KB
testcase_16 AC 412 ms
48,100 KB
testcase_17 AC 275 ms
47,476 KB
testcase_18 AC 423 ms
48,068 KB
testcase_19 AC 370 ms
48,244 KB
testcase_20 AC 469 ms
48,132 KB
testcase_21 AC 181 ms
43,504 KB
testcase_22 AC 328 ms
48,104 KB
testcase_23 AC 487 ms
48,052 KB
testcase_24 AC 511 ms
48,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class no79{
	public static void main(String[] args) {
		Scanner stdIn=new Scanner(System.in);
		int n,i,a=0,m=0,l[]=new int[100000],t[]=new int[6];
		n=stdIn.nextInt();
		for(i=0;i<n;i++) {
			l[i]=stdIn.nextInt();
			t[l[i]-1]++;
		}
		for(i=5;i>=0;i--) {
			if(m<t[i]) {
				m=t[i];
				a=i;
			}
		}
		System.out.print(a+1);
	}
}
0