結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー r.suzukir.suzuki
提出日時 2016-01-20 22:54:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 630 ms / 5,000 ms
コード長 1,233 bytes
コンパイル時間 3,786 ms
コンパイル使用メモリ 80,700 KB
実行使用メモリ 48,380 KB
最終ジャッジ日時 2024-06-26 07:48:52
合計ジャッジ時間 12,610 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 231 ms
46,780 KB
testcase_01 AC 589 ms
48,128 KB
testcase_02 AC 120 ms
40,848 KB
testcase_03 AC 132 ms
41,344 KB
testcase_04 AC 120 ms
41,332 KB
testcase_05 AC 630 ms
48,192 KB
testcase_06 AC 130 ms
41,712 KB
testcase_07 AC 135 ms
41,448 KB
testcase_08 AC 119 ms
40,040 KB
testcase_09 AC 132 ms
41,652 KB
testcase_10 AC 133 ms
41,500 KB
testcase_11 AC 130 ms
41,420 KB
testcase_12 AC 130 ms
41,636 KB
testcase_13 AC 117 ms
40,080 KB
testcase_14 AC 494 ms
47,904 KB
testcase_15 AC 343 ms
47,696 KB
testcase_16 AC 535 ms
48,224 KB
testcase_17 AC 328 ms
47,924 KB
testcase_18 AC 533 ms
48,132 KB
testcase_19 AC 478 ms
48,120 KB
testcase_20 AC 592 ms
48,336 KB
testcase_21 AC 211 ms
44,172 KB
testcase_22 AC 396 ms
47,940 KB
testcase_23 AC 563 ms
48,380 KB
testcase_24 AC 585 ms
48,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;

class Counter {
	HashMap<String, Integer> level;

	public Counter() {
		level = new HashMap<String, Integer>();
	}

	public void setLevel(int n) {
		String s;
		for (int i = 1; i <= n; i++) {
			s = "Lv" + String.valueOf(i);
			level.put(s, 0);
		}
	}

	public void voteLevel(int n) {
		String s = "Lv" + String.valueOf(n);
		level.put(s, level.get(s) + 1);
	}

	public String answer() {
		String ans = "";
		int i = -1;
		for (Map.Entry<String, Integer> e : level.entrySet()) {
			if (i < e.getValue()) {
				i = e.getValue();
				ans = e.getKey();
			} else if (i == e.getValue()) {
				int ansi = Integer.parseInt(ans.substring(ans.length() - 1));
				int ei = Integer.parseInt(e.getKey().substring(e.getKey().length() - 1));
				if (ansi < ei) {
					ans = e.getKey();
				}
			}
		}
		return ans.substring(ans.length() - 1);
	}
}

public class No_79_2 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		Counter counter = new Counter();
		counter.setLevel(6);

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

		System.out.println(counter.answer());
		sc.close();

	}

}
0