結果

問題 No.349 干支の置き物
ユーザー hnthnt
提出日時 2016-03-27 21:31:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 860 bytes
コンパイル時間 4,152 ms
コンパイル使用メモリ 77,368 KB
実行使用メモリ 41,496 KB
最終ジャッジ日時 2024-11-17 07:29:26
合計ジャッジ時間 8,901 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,400 KB
testcase_01 AC 109 ms
39,932 KB
testcase_02 AC 122 ms
41,196 KB
testcase_03 AC 135 ms
41,452 KB
testcase_04 AC 135 ms
40,996 KB
testcase_05 AC 136 ms
41,060 KB
testcase_06 AC 132 ms
41,052 KB
testcase_07 AC 129 ms
41,496 KB
testcase_08 AC 131 ms
41,172 KB
testcase_09 AC 138 ms
41,276 KB
testcase_10 AC 127 ms
41,128 KB
testcase_11 AC 131 ms
41,232 KB
testcase_12 AC 114 ms
39,944 KB
testcase_13 AC 112 ms
40,320 KB
testcase_14 AC 128 ms
41,352 KB
testcase_15 AC 110 ms
40,044 KB
testcase_16 AC 122 ms
39,992 KB
testcase_17 AC 113 ms
39,788 KB
testcase_18 AC 113 ms
39,784 KB
testcase_19 AC 124 ms
41,076 KB
testcase_20 AC 130 ms
41,236 KB
testcase_21 AC 126 ms
41,432 KB
testcase_22 AC 127 ms
41,292 KB
testcase_23 AC 132 ms
41,280 KB
testcase_24 AC 135 ms
41,196 KB
testcase_25 AC 126 ms
41,068 KB
testcase_26 AC 129 ms
41,116 KB
testcase_27 AC 129 ms
41,452 KB
testcase_28 AC 132 ms
41,216 KB
testcase_29 AC 131 ms
41,152 KB
testcase_30 AC 132 ms
41,296 KB
testcase_31 AC 132 ms
41,308 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