結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー nCk_cvnCk_cv
提出日時 2016-02-01 19:48:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 560 ms / 5,000 ms
コード長 420 bytes
コンパイル時間 2,134 ms
コンパイル使用メモリ 78,144 KB
実行使用メモリ 47,808 KB
最終ジャッジ日時 2024-06-26 07:48:19
合計ジャッジ時間 10,831 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 214 ms
45,152 KB
testcase_01 AC 560 ms
47,632 KB
testcase_02 AC 136 ms
40,944 KB
testcase_03 AC 123 ms
40,168 KB
testcase_04 AC 137 ms
41,440 KB
testcase_05 AC 557 ms
47,808 KB
testcase_06 AC 136 ms
41,144 KB
testcase_07 AC 136 ms
41,372 KB
testcase_08 AC 137 ms
41,260 KB
testcase_09 AC 136 ms
41,444 KB
testcase_10 AC 141 ms
41,324 KB
testcase_11 AC 135 ms
41,168 KB
testcase_12 AC 135 ms
41,144 KB
testcase_13 AC 137 ms
41,284 KB
testcase_14 AC 459 ms
47,472 KB
testcase_15 AC 302 ms
47,184 KB
testcase_16 AC 523 ms
47,580 KB
testcase_17 AC 289 ms
47,296 KB
testcase_18 AC 502 ms
47,492 KB
testcase_19 AC 438 ms
47,420 KB
testcase_20 AC 559 ms
47,524 KB
testcase_21 AC 215 ms
43,720 KB
testcase_22 AC 382 ms
47,580 KB
testcase_23 AC 539 ms
47,628 KB
testcase_24 AC 543 ms
47,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;
import java.io.*;
 
public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int[] l = new int[6];
		int n = sc.nextInt();
		for(int i = 0; i < n; i++) {
			l[sc.nextInt()-1]++;
		}
		int MAX = 0;
		int id = 5;
		for(int i = 0; i < 6; i++) {
			if(MAX <= l[i]) {
				MAX = l[i];
				id = i;
			}
		}
		System.out.println((id+1));
	}
}
0