結果

問題 No.349 干支の置き物
ユーザー GrenacheGrenache
提出日時 2016-03-11 22:26:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 861 bytes
コンパイル時間 3,546 ms
コンパイル使用メモリ 76,072 KB
実行使用メモリ 41,652 KB
最終ジャッジ日時 2024-11-17 07:21:22
合計ジャッジ時間 8,753 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,416 KB
testcase_01 AC 121 ms
40,308 KB
testcase_02 AC 131 ms
41,012 KB
testcase_03 AC 136 ms
41,216 KB
testcase_04 AC 139 ms
41,228 KB
testcase_05 AC 135 ms
41,304 KB
testcase_06 AC 136 ms
41,404 KB
testcase_07 AC 119 ms
40,020 KB
testcase_08 AC 121 ms
39,916 KB
testcase_09 AC 134 ms
41,064 KB
testcase_10 AC 133 ms
41,064 KB
testcase_11 AC 136 ms
41,144 KB
testcase_12 AC 135 ms
40,892 KB
testcase_13 AC 132 ms
41,120 KB
testcase_14 AC 134 ms
41,216 KB
testcase_15 AC 139 ms
41,104 KB
testcase_16 AC 138 ms
41,112 KB
testcase_17 AC 132 ms
41,288 KB
testcase_18 AC 117 ms
39,908 KB
testcase_19 AC 129 ms
41,224 KB
testcase_20 AC 132 ms
41,040 KB
testcase_21 AC 116 ms
40,108 KB
testcase_22 AC 129 ms
41,060 KB
testcase_23 AC 128 ms
40,968 KB
testcase_24 AC 128 ms
41,228 KB
testcase_25 AC 132 ms
41,020 KB
testcase_26 AC 132 ms
41,652 KB
testcase_27 AC 133 ms
41,216 KB
testcase_28 AC 126 ms
40,156 KB
testcase_29 AC 121 ms
40,332 KB
testcase_30 AC 134 ms
40,952 KB
testcase_31 AC 135 ms
41,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


public class Main_yukicoder349 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();

        Map<String, Integer> hm = new HashMap<>();
        for (int i = 0; i < n; i++) {
        	String s = sc.next();
        	if (hm.containsKey(s)) {
        		hm.put(s, hm.get(s) + 1);
        	} else {
        		hm.put(s, 1);
        	}
        }

        boolean flag = true;
        for (Entry<String, Integer> e : hm.entrySet()) {
        	if (e.getValue() -1 > n - e.getValue()) {
        		flag = false;
        		break;
        	}
        }

        if (flag) {
        	System.out.println("YES");
        } else {
        	System.out.println("NO");
        }

        sc.close();
    }
}
0