結果

問題 No.349 干支の置き物
ユーザー AoiroFukurouAoiroFukurou
提出日時 2016-05-14 15:05:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 1,051 bytes
コンパイル時間 3,712 ms
コンパイル使用メモリ 77,804 KB
実行使用メモリ 41,472 KB
最終ジャッジ日時 2024-11-17 07:32:39
合計ジャッジ時間 9,167 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,240 KB
testcase_01 AC 137 ms
41,036 KB
testcase_02 AC 135 ms
41,072 KB
testcase_03 AC 133 ms
41,432 KB
testcase_04 AC 136 ms
41,076 KB
testcase_05 AC 138 ms
41,128 KB
testcase_06 AC 140 ms
41,004 KB
testcase_07 AC 137 ms
41,044 KB
testcase_08 AC 138 ms
41,280 KB
testcase_09 AC 137 ms
41,120 KB
testcase_10 AC 135 ms
41,280 KB
testcase_11 AC 140 ms
40,936 KB
testcase_12 AC 136 ms
41,472 KB
testcase_13 AC 136 ms
41,236 KB
testcase_14 AC 135 ms
41,204 KB
testcase_15 AC 136 ms
41,204 KB
testcase_16 AC 136 ms
41,188 KB
testcase_17 AC 124 ms
40,128 KB
testcase_18 AC 138 ms
41,240 KB
testcase_19 AC 134 ms
41,132 KB
testcase_20 AC 136 ms
41,204 KB
testcase_21 AC 135 ms
41,352 KB
testcase_22 AC 135 ms
41,240 KB
testcase_23 AC 138 ms
41,212 KB
testcase_24 AC 131 ms
41,256 KB
testcase_25 AC 138 ms
41,092 KB
testcase_26 AC 136 ms
41,256 KB
testcase_27 AC 136 ms
41,396 KB
testcase_28 AC 136 ms
41,128 KB
testcase_29 AC 142 ms
41,256 KB
testcase_30 AC 138 ms
41,368 KB
testcase_31 AC 138 ms
41,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class No349 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		sc.nextLine();
		String[] s = new String[N];
		int[] eto = new int[12];
		for (int i = 0; i < s.length; i++) {
			s[i] = sc.nextLine();
			switch (s[i]) {
			case "ne":
				eto[0]++;
				break;
			case "ushi":
				eto[1]++;
				break;
			case "tora":
				eto[2]++;
				break;
			case "u":
				eto[3]++;
				break;
			case "tatsu":
				eto[4]++;
				break;
			case "mi":
				eto[5]++;
				break;
			case "uma":
				eto[6]++;
				break;
			case "hitsuji":
				eto[7]++;
				break;
			case "saru":
				eto[8]++;
				break;
			case "tori":
				eto[9]++;
				break;
			case "inu":
				eto[10]++;
				break;
			case "i":
				eto[11]++;
				break;
			}
		}
		boolean b = false;
		for (int i = 0; i < 12; i++) {
			int t = N;
			t -= eto[i];
			if (!(eto[i] - 1 <= t)) {
				b = true;
			}
		}
		if (b) {
			System.out.println("NO");
		} else {
			System.out.println("YES");
		}
	}
}
0