結果

問題 No.349 干支の置き物
ユーザー tsunabittsunabit
提出日時 2019-05-28 00:00:13
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 869 bytes
コンパイル時間 3,713 ms
コンパイル使用メモリ 75,940 KB
実行使用メモリ 54,436 KB
最終ジャッジ日時 2024-09-17 15:36:37
合計ジャッジ時間 8,084 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
53,004 KB
testcase_01 AC 115 ms
53,824 KB
testcase_02 AC 103 ms
52,800 KB
testcase_03 AC 116 ms
54,012 KB
testcase_04 AC 125 ms
53,928 KB
testcase_05 AC 107 ms
53,180 KB
testcase_06 AC 121 ms
54,060 KB
testcase_07 AC 117 ms
53,784 KB
testcase_08 AC 111 ms
53,220 KB
testcase_09 AC 117 ms
54,068 KB
testcase_10 AC 111 ms
52,928 KB
testcase_11 AC 134 ms
54,292 KB
testcase_12 AC 116 ms
52,924 KB
testcase_13 AC 138 ms
53,908 KB
testcase_14 AC 126 ms
53,936 KB
testcase_15 AC 105 ms
52,556 KB
testcase_16 AC 123 ms
54,136 KB
testcase_17 AC 107 ms
53,140 KB
testcase_18 AC 117 ms
54,184 KB
testcase_19 AC 119 ms
53,968 KB
testcase_20 AC 109 ms
52,888 KB
testcase_21 AC 117 ms
54,084 KB
testcase_22 WA -
testcase_23 AC 105 ms
53,088 KB
testcase_24 WA -
testcase_25 AC 118 ms
53,800 KB
testcase_26 AC 109 ms
53,024 KB
testcase_27 AC 122 ms
52,976 KB
testcase_28 AC 122 ms
54,352 KB
testcase_29 WA -
testcase_30 AC 127 ms
54,196 KB
testcase_31 AC 123 ms
54,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class No349 {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner s = new Scanner(System.in);
        Map<String, Integer> eto = new HashMap<String, Integer>() {{ put("ne", 0); put("ushi", 0); put("tora", 0); put("u", 0); put("tatsu", 0); put("mi", 0); put("uma", 0); put("hitsuji", 0); put("saru", 0); put("tori", 0); put("inu", 0); put("i", 0);}};
        int n = s.nextInt();
        for(int i = 0; i < n; i++) {
        	String temp = s.next();
        	eto.put(temp, eto.get(temp) + 1);
        }
        int max = 0;
        for(int c : eto.values()) {
        	max = max < c? c : max;
        }
        if(max > (n / 2)) {
        	System.out.println("NO");
        }else {
        	System.out.println("YES");
        }
        
    }
}
0