結果

問題 No.349 干支の置き物
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-05-04 19:28:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 1,202 bytes
コンパイル時間 2,403 ms
コンパイル使用メモリ 77,880 KB
実行使用メモリ 37,076 KB
最終ジャッジ日時 2024-09-14 07:13:22
合計ジャッジ時間 5,030 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
36,500 KB
testcase_01 AC 56 ms
37,076 KB
testcase_02 AC 54 ms
37,040 KB
testcase_03 AC 53 ms
36,676 KB
testcase_04 AC 53 ms
36,404 KB
testcase_05 AC 53 ms
36,764 KB
testcase_06 AC 54 ms
36,940 KB
testcase_07 AC 55 ms
36,752 KB
testcase_08 AC 55 ms
36,752 KB
testcase_09 AC 54 ms
36,520 KB
testcase_10 AC 53 ms
36,688 KB
testcase_11 AC 54 ms
36,860 KB
testcase_12 AC 55 ms
36,924 KB
testcase_13 AC 56 ms
36,860 KB
testcase_14 AC 56 ms
36,932 KB
testcase_15 AC 55 ms
36,896 KB
testcase_16 AC 55 ms
36,664 KB
testcase_17 AC 56 ms
36,392 KB
testcase_18 AC 56 ms
36,524 KB
testcase_19 AC 53 ms
36,756 KB
testcase_20 AC 54 ms
36,652 KB
testcase_21 AC 55 ms
36,676 KB
testcase_22 AC 53 ms
36,720 KB
testcase_23 AC 53 ms
36,992 KB
testcase_24 AC 53 ms
36,660 KB
testcase_25 AC 55 ms
36,836 KB
testcase_26 AC 55 ms
36,916 KB
testcase_27 AC 54 ms
36,680 KB
testcase_28 AC 55 ms
36,784 KB
testcase_29 AC 55 ms
36,740 KB
testcase_30 AC 54 ms
36,876 KB
testcase_31 AC 55 ms
36,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.HashMap;
import java.util.Map;
import static java.lang.System.in;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(in));
        int N = Integer.parseInt(reader.readLine());

        String[] ornaments = new String[]{"ne", "ushi", "tora", "u", "tatsu", "mi", "uma", "hitsuji", "saru", "tori", "inu", "i"};
        Map<String, Integer> map = new HashMap<>();
        for (int i = 0; i < 12; i++) {
            map.put(ornaments[i], i);
        }
        int[] table = new int[12];
        for (int i = 0; i < N; i++) {
            String ornament = reader.readLine();
            table[map.get(ornament)] += 1;
        }

        int max = Integer.MIN_VALUE;
        for (int i = 0; i < 12; i++) {
            max = Math.max(max, table[i]);
        }

        String answer = "YES";
        for (int i = 0; i < 12; i++) {
            if (table[i] > ((N+1) / 2)) {
                answer="NO";
                break;
            }
        }
        System.out.println(answer);
    }
}
0