結果

問題 No.349 干支の置き物
ユーザー fal_rndfal_rnd
提出日時 2016-10-28 16:39:34
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 766 bytes
コンパイル時間 2,458 ms
コンパイル使用メモリ 83,552 KB
実行使用メモリ 54,360 KB
最終ジャッジ日時 2024-05-03 07:16:32
合計ジャッジ時間 8,205 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,220 KB
testcase_01 AC 135 ms
41,688 KB
testcase_02 AC 131 ms
41,432 KB
testcase_03 AC 136 ms
41,280 KB
testcase_04 AC 149 ms
41,664 KB
testcase_05 AC 148 ms
41,828 KB
testcase_06 AC 149 ms
41,728 KB
testcase_07 AC 136 ms
41,608 KB
testcase_08 AC 146 ms
41,488 KB
testcase_09 AC 151 ms
41,388 KB
testcase_10 AC 126 ms
40,188 KB
testcase_11 AC 151 ms
41,492 KB
testcase_12 AC 148 ms
41,896 KB
testcase_13 AC 145 ms
42,216 KB
testcase_14 AC 144 ms
41,528 KB
testcase_15 AC 142 ms
41,004 KB
testcase_16 AC 147 ms
41,592 KB
testcase_17 AC 137 ms
41,692 KB
testcase_18 AC 135 ms
41,216 KB
testcase_19 WA -
testcase_20 AC 135 ms
41,396 KB
testcase_21 WA -
testcase_22 AC 126 ms
41,444 KB
testcase_23 AC 134 ms
41,532 KB
testcase_24 AC 135 ms
41,332 KB
testcase_25 AC 135 ms
40,992 KB
testcase_26 AC 146 ms
41,400 KB
testcase_27 AC 150 ms
41,800 KB
testcase_28 AC 150 ms
41,784 KB
testcase_29 AC 160 ms
41,940 KB
testcase_30 AC 159 ms
41,664 KB
testcase_31 AC 157 ms
41,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class A {
	static Scanner s = new Scanner(System.in);
	static enum ETO{
		ne,
		ushi,
		tora,
		u,
		tatsu,
		mi,
		uma,
		hitsuji,
		saru,
		tori,
		inu,
		i,
		;

		int amount=0;

		static ETO match(String s) {
			boolean b = false;
			for(ETO eto:ETO.values()) {
				if(s.matches(eto.name())) {
					eto.amount++;
					return eto;
				}
			}
			return null;
		}
		@Override
		public String toString() {
			return this.name()+":"+this.amount;
		}
	}
	public static void main(String[] args) {
		int in = s.nextInt();
		while(s.hasNext()) {
			ETO.match(s.next());
		}
		int max = 0;
		for(ETO e:ETO.values()) {
			max = Math.max(max, e.amount);
		}
		if(max>in/2+1) {
			System.out.println("NO");
		}else {
			System.out.println("YES");
		}
	}
}
0