結果

問題 No.349 干支の置き物
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-13 21:31:44
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 825 bytes
コンパイル時間 2,123 ms
コンパイル使用メモリ 75,100 KB
実行使用メモリ 41,452 KB
最終ジャッジ日時 2024-05-04 11:26:29
合計ジャッジ時間 6,511 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
40,868 KB
testcase_01 AC 97 ms
39,628 KB
testcase_02 AC 115 ms
41,388 KB
testcase_03 AC 108 ms
40,552 KB
testcase_04 AC 113 ms
40,964 KB
testcase_05 AC 107 ms
40,928 KB
testcase_06 AC 102 ms
40,348 KB
testcase_07 AC 111 ms
41,260 KB
testcase_08 AC 112 ms
41,300 KB
testcase_09 AC 118 ms
41,404 KB
testcase_10 AC 117 ms
41,032 KB
testcase_11 AC 125 ms
41,344 KB
testcase_12 AC 125 ms
41,328 KB
testcase_13 AC 113 ms
40,080 KB
testcase_14 AC 121 ms
41,140 KB
testcase_15 AC 106 ms
40,272 KB
testcase_16 AC 114 ms
41,104 KB
testcase_17 AC 113 ms
40,228 KB
testcase_18 WA -
testcase_19 AC 121 ms
41,348 KB
testcase_20 WA -
testcase_21 AC 118 ms
41,300 KB
testcase_22 AC 96 ms
39,884 KB
testcase_23 WA -
testcase_24 AC 111 ms
41,244 KB
testcase_25 AC 116 ms
41,052 KB
testcase_26 AC 127 ms
41,452 KB
testcase_27 AC 115 ms
41,312 KB
testcase_28 AC 112 ms
41,400 KB
testcase_29 AC 113 ms
40,084 KB
testcase_30 WA -
testcase_31 AC 107 ms
40,348 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