結果

問題 No.349 干支の置き物
ユーザー tentententen
提出日時 2020-11-04 12:27:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 668 bytes
コンパイル時間 2,208 ms
コンパイル使用メモリ 76,560 KB
実行使用メモリ 56,060 KB
最終ジャッジ日時 2024-07-22 09:55:53
合計ジャッジ時間 7,917 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
53,816 KB
testcase_01 AC 132 ms
53,864 KB
testcase_02 AC 134 ms
54,020 KB
testcase_03 AC 137 ms
54,100 KB
testcase_04 AC 143 ms
53,888 KB
testcase_05 AC 135 ms
54,264 KB
testcase_06 AC 138 ms
56,060 KB
testcase_07 AC 140 ms
54,092 KB
testcase_08 AC 140 ms
54,252 KB
testcase_09 AC 140 ms
54,236 KB
testcase_10 AC 139 ms
53,948 KB
testcase_11 AC 138 ms
54,032 KB
testcase_12 AC 141 ms
53,880 KB
testcase_13 AC 142 ms
54,136 KB
testcase_14 AC 139 ms
54,280 KB
testcase_15 AC 139 ms
54,140 KB
testcase_16 AC 141 ms
54,420 KB
testcase_17 AC 136 ms
54,008 KB
testcase_18 AC 137 ms
54,180 KB
testcase_19 AC 138 ms
53,812 KB
testcase_20 AC 134 ms
54,076 KB
testcase_21 AC 137 ms
53,992 KB
testcase_22 AC 135 ms
54,300 KB
testcase_23 AC 137 ms
53,992 KB
testcase_24 AC 140 ms
54,272 KB
testcase_25 AC 135 ms
54,172 KB
testcase_26 AC 141 ms
54,192 KB
testcase_27 AC 144 ms
54,100 KB
testcase_28 AC 141 ms
53,944 KB
testcase_29 AC 143 ms
54,236 KB
testcase_30 AC 142 ms
53,976 KB
testcase_31 AC 143 ms
53,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		String[] etoes = new String[]{"ne", "ushi", "tora", "u", "tatsu", "mi", "uma", "hitsuji", "saru", "tori", "inu", "i"};
		HashMap<String, Integer> idxes = new HashMap<>();
		for (int i = 0; i < etoes.length; i++) {
		    idxes.put(etoes[i], i);
		}
		int[] counts = new int[etoes.length];
		int n = sc.nextInt();
		for (int i = 0; i < n; i++) {
		    counts[idxes.get(sc.next())]++;
		}
		Arrays.sort(counts);
		if (counts[counts.length - 1] > (n + 1) / 2) {
		    System.out.println("NO");
		} else {
		    System.out.println("YES");
		}
	}
}
0