結果

問題 No.349 干支の置き物
ユーザー samplelpmassamplelpmas
提出日時 2016-12-27 18:55:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 894 bytes
コンパイル時間 2,091 ms
コンパイル使用メモリ 74,736 KB
実行使用メモリ 54,328 KB
最終ジャッジ日時 2024-12-15 04:13:52
合計ジャッジ時間 7,076 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
53,084 KB
testcase_01 AC 122 ms
53,968 KB
testcase_02 AC 123 ms
54,128 KB
testcase_03 AC 124 ms
53,952 KB
testcase_04 AC 114 ms
52,832 KB
testcase_05 AC 128 ms
54,244 KB
testcase_06 AC 113 ms
53,224 KB
testcase_07 AC 122 ms
54,328 KB
testcase_08 AC 126 ms
53,760 KB
testcase_09 AC 127 ms
54,040 KB
testcase_10 AC 124 ms
54,120 KB
testcase_11 AC 124 ms
53,104 KB
testcase_12 AC 128 ms
54,148 KB
testcase_13 AC 123 ms
53,872 KB
testcase_14 AC 128 ms
54,100 KB
testcase_15 AC 129 ms
54,112 KB
testcase_16 AC 123 ms
53,788 KB
testcase_17 AC 123 ms
52,780 KB
testcase_18 AC 127 ms
54,148 KB
testcase_19 AC 125 ms
54,136 KB
testcase_20 AC 125 ms
53,852 KB
testcase_21 AC 126 ms
54,040 KB
testcase_22 AC 114 ms
53,084 KB
testcase_23 AC 127 ms
54,108 KB
testcase_24 AC 131 ms
54,128 KB
testcase_25 AC 127 ms
54,100 KB
testcase_26 AC 125 ms
53,952 KB
testcase_27 AC 129 ms
54,188 KB
testcase_28 AC 125 ms
53,824 KB
testcase_29 AC 128 ms
53,736 KB
testcase_30 AC 123 ms
54,048 KB
testcase_31 AC 123 ms
53,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        int numAnimals = sc.nextInt();

        Map<String, Integer> zodiac = new HashMap<String, Integer>();

        for (int i = 0; i < numAnimals; i ++) {

            String animal = sc.next();

            if (zodiac.containsKey(animal)) {
                zodiac.put(animal , zodiac.get(animal) + 1);
            } else {
                zodiac.put(animal, 1);
            }

        }

        int animalMax = 0;

        for (int numAnimal : zodiac.values()) {
            animalMax = Math.max(animalMax, numAnimal);
        }

        if (animalMax - 1  <= numAnimals - animalMax) {
            System.out.println("YES");
        } else {
            System.out.println("NO");
        }

    }

}
0