結果

問題 No.349 干支の置き物
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-13 21:33:29
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 824 bytes
コンパイル時間 1,950 ms
コンパイル使用メモリ 74,876 KB
実行使用メモリ 42,084 KB
最終ジャッジ日時 2024-11-25 21:58:53
合計ジャッジ時間 6,763 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
39,864 KB
testcase_01 AC 119 ms
41,816 KB
testcase_02 WA -
testcase_03 AC 114 ms
41,608 KB
testcase_04 AC 128 ms
41,132 KB
testcase_05 AC 121 ms
41,460 KB
testcase_06 AC 113 ms
40,300 KB
testcase_07 AC 126 ms
41,288 KB
testcase_08 AC 123 ms
40,992 KB
testcase_09 AC 119 ms
41,428 KB
testcase_10 AC 122 ms
42,084 KB
testcase_11 AC 123 ms
41,408 KB
testcase_12 AC 125 ms
41,600 KB
testcase_13 AC 127 ms
41,160 KB
testcase_14 AC 128 ms
40,984 KB
testcase_15 AC 122 ms
41,368 KB
testcase_16 AC 124 ms
41,624 KB
testcase_17 AC 120 ms
41,284 KB
testcase_18 AC 115 ms
41,164 KB
testcase_19 AC 118 ms
41,172 KB
testcase_20 AC 112 ms
41,464 KB
testcase_21 WA -
testcase_22 AC 124 ms
40,976 KB
testcase_23 AC 119 ms
41,440 KB
testcase_24 AC 110 ms
41,084 KB
testcase_25 AC 124 ms
41,120 KB
testcase_26 AC 111 ms
40,064 KB
testcase_27 AC 124 ms
41,672 KB
testcase_28 AC 109 ms
40,284 KB
testcase_29 AC 118 ms
41,296 KB
testcase_30 AC 126 ms
41,524 KB
testcase_31 AC 128 ms
41,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int h = (N+1)/2;
        String [] E = {"ne","ushi","tora","u","tatsu","mi","uma","hitsuji","saru","tori","inu","i"};
        String [] A = new String [N];
        int [] B = new int [12];
        int max = 0;
        for(int i=0; i<N; i++){
            A[i] = sc.next();
            for(int j=0; j<12; j++){
                if( E[j].equals(A[i]) ){
                    B[j]++;
                    max = Math.max(max, B[j]);
                    break;
                }
                if(max>h){
                    System.out.println("NO");
                    return;
                }
            }
        }
        System.out.println("YES");
    }
}
0