結果

問題 No.349 干支の置き物
ユーザー hnthnt
提出日時 2016-03-27 21:31:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 860 bytes
コンパイル時間 2,959 ms
コンパイル使用メモリ 77,600 KB
実行使用メモリ 41,468 KB
最終ジャッジ日時 2024-04-28 14:45:38
合計ジャッジ時間 7,446 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
40,156 KB
testcase_01 AC 111 ms
41,044 KB
testcase_02 AC 110 ms
41,016 KB
testcase_03 AC 106 ms
40,476 KB
testcase_04 AC 103 ms
39,988 KB
testcase_05 AC 111 ms
41,288 KB
testcase_06 AC 123 ms
41,400 KB
testcase_07 AC 107 ms
40,248 KB
testcase_08 AC 116 ms
40,940 KB
testcase_09 AC 117 ms
40,748 KB
testcase_10 AC 111 ms
41,004 KB
testcase_11 AC 115 ms
41,220 KB
testcase_12 AC 112 ms
40,976 KB
testcase_13 AC 105 ms
40,448 KB
testcase_14 AC 98 ms
39,548 KB
testcase_15 AC 121 ms
41,132 KB
testcase_16 AC 122 ms
41,468 KB
testcase_17 AC 108 ms
40,176 KB
testcase_18 AC 110 ms
41,172 KB
testcase_19 AC 108 ms
41,020 KB
testcase_20 AC 104 ms
40,920 KB
testcase_21 AC 109 ms
41,256 KB
testcase_22 AC 102 ms
40,120 KB
testcase_23 AC 109 ms
40,116 KB
testcase_24 AC 119 ms
41,180 KB
testcase_25 AC 113 ms
40,868 KB
testcase_26 AC 116 ms
40,996 KB
testcase_27 AC 124 ms
41,008 KB
testcase_28 AC 105 ms
40,420 KB
testcase_29 AC 119 ms
41,008 KB
testcase_30 AC 116 ms
41,076 KB
testcase_31 AC 105 ms
40,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class no349 {
	public static void main(String[] args){
		int[] eto = new int[12];
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int max=0;
		for(int j=0;j<N;j++){
			String A = sc.next();
			switch(A){
			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;
			}
		}
		for(int j=0;j<eto.length;j++){
			max=Math.max(max,eto[j]);
		}
		if(N%2==0&&max<=N/2){
			System.out.println("YES");
		}else if(N%2!=0&&max<=N/2+1){
			System.out.println("YES");
		}else{
			System.out.println("NO");
		}

	}
}
0