結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー r.suzukir.suzuki
提出日時 2016-01-18 22:06:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 587 ms / 5,000 ms
コード長 1,025 bytes
コンパイル時間 3,773 ms
コンパイル使用メモリ 79,600 KB
実行使用メモリ 47,868 KB
最終ジャッジ日時 2024-06-26 07:48:04
合計ジャッジ時間 12,475 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 220 ms
45,388 KB
testcase_01 AC 549 ms
47,720 KB
testcase_02 AC 137 ms
41,228 KB
testcase_03 AC 135 ms
40,912 KB
testcase_04 AC 137 ms
41,012 KB
testcase_05 AC 552 ms
47,496 KB
testcase_06 AC 136 ms
41,216 KB
testcase_07 AC 134 ms
41,136 KB
testcase_08 AC 138 ms
41,204 KB
testcase_09 AC 132 ms
41,424 KB
testcase_10 AC 120 ms
39,988 KB
testcase_11 AC 136 ms
41,272 KB
testcase_12 AC 137 ms
40,964 KB
testcase_13 AC 134 ms
41,088 KB
testcase_14 AC 477 ms
47,468 KB
testcase_15 AC 307 ms
47,148 KB
testcase_16 AC 496 ms
47,500 KB
testcase_17 AC 296 ms
46,940 KB
testcase_18 AC 502 ms
47,680 KB
testcase_19 AC 415 ms
47,236 KB
testcase_20 AC 564 ms
47,868 KB
testcase_21 AC 206 ms
43,364 KB
testcase_22 AC 346 ms
47,292 KB
testcase_23 AC 562 ms
47,588 KB
testcase_24 AC 587 ms
47,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

enum Level {
	Lv1("1"), Lv2("2"), Lv3("3"), Lv4("4"), Lv5("5"), Lv6("6");
	int count;
	String name;

	Level(String s) {
		this.name = s;
	}

	public String toString() {
		return this.name;
	}

	static void vote(int i) {
		switch (i) {
		case 1:
			Lv1.count++;
			break;
		case 2:
			Lv2.count++;
			break;
		case 3:
			Lv3.count++;
			break;
		case 4:
			Lv4.count++;
			break;
		case 5:
			Lv5.count++;
			break;
		case 6:
			Lv6.count++;
			break;
		}
	}

	static Level judgment() {
		int i = -1;
		Level max = null;
		for (Level l : Level.values()) {
			if (i < l.count) {
				i = l.count;
				max = l;
			} else if (i == l.count) {
				if (Integer.parseInt(max.name) < Integer.parseInt(l.name)) {
					max = l;
				}
			}
		}
		return max;
	}
}

public class No_79 {

	public static void main(String[] args) {
		java.util.Scanner sc = new java.util.Scanner(System.in);
		int n = sc.nextInt();

		for (int i = 0; i < n; i++) {
			Level.vote(sc.nextInt());
		}

		System.out.println(Level.judgment());
		sc.close();

	}

}
0