結果

問題 No.349 干支の置き物
ユーザー fal_rndfal_rnd
提出日時 2016-10-28 16:56:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 768 bytes
コンパイル時間 2,050 ms
コンパイル使用メモリ 77,852 KB
実行使用メモリ 41,972 KB
最終ジャッジ日時 2024-11-24 05:12:05
合計ジャッジ時間 7,093 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,176 KB
testcase_01 AC 122 ms
41,304 KB
testcase_02 AC 111 ms
41,192 KB
testcase_03 AC 126 ms
41,320 KB
testcase_04 AC 128 ms
41,972 KB
testcase_05 AC 125 ms
41,524 KB
testcase_06 AC 144 ms
41,948 KB
testcase_07 AC 113 ms
41,736 KB
testcase_08 AC 129 ms
41,496 KB
testcase_09 AC 137 ms
40,704 KB
testcase_10 AC 120 ms
41,412 KB
testcase_11 AC 134 ms
41,208 KB
testcase_12 AC 140 ms
41,680 KB
testcase_13 AC 118 ms
41,672 KB
testcase_14 AC 124 ms
41,768 KB
testcase_15 AC 135 ms
41,828 KB
testcase_16 AC 119 ms
41,804 KB
testcase_17 AC 125 ms
41,416 KB
testcase_18 AC 111 ms
40,984 KB
testcase_19 AC 117 ms
40,140 KB
testcase_20 AC 108 ms
41,432 KB
testcase_21 AC 108 ms
41,340 KB
testcase_22 AC 123 ms
41,640 KB
testcase_23 AC 118 ms
40,172 KB
testcase_24 AC 118 ms
41,564 KB
testcase_25 AC 125 ms
41,492 KB
testcase_26 AC 135 ms
41,516 KB
testcase_27 AC 140 ms
41,744 KB
testcase_28 AC 133 ms
40,900 KB
testcase_29 AC 140 ms
41,632 KB
testcase_30 AC 140 ms
41,964 KB
testcase_31 AC 140 ms
41,296 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-max+1) {
			System.out.println("NO");
		}else {
			System.out.println("YES");
		}
	}
}
0