結果

問題 No.349 干支の置き物
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-13 21:36:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 809 bytes
コンパイル時間 2,089 ms
コンパイル使用メモリ 74,756 KB
実行使用メモリ 41,540 KB
最終ジャッジ日時 2024-11-25 21:59:13
合計ジャッジ時間 6,598 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
39,932 KB
testcase_01 AC 118 ms
41,508 KB
testcase_02 AC 103 ms
40,156 KB
testcase_03 AC 104 ms
40,100 KB
testcase_04 AC 122 ms
41,156 KB
testcase_05 AC 124 ms
41,472 KB
testcase_06 AC 120 ms
41,216 KB
testcase_07 AC 107 ms
40,272 KB
testcase_08 AC 110 ms
40,240 KB
testcase_09 AC 119 ms
41,224 KB
testcase_10 AC 113 ms
41,140 KB
testcase_11 AC 118 ms
41,408 KB
testcase_12 AC 121 ms
41,304 KB
testcase_13 AC 112 ms
40,384 KB
testcase_14 AC 118 ms
41,540 KB
testcase_15 AC 120 ms
41,012 KB
testcase_16 AC 104 ms
39,964 KB
testcase_17 AC 117 ms
41,444 KB
testcase_18 AC 103 ms
40,136 KB
testcase_19 AC 117 ms
41,284 KB
testcase_20 AC 114 ms
41,460 KB
testcase_21 AC 118 ms
41,380 KB
testcase_22 AC 115 ms
41,272 KB
testcase_23 AC 117 ms
41,096 KB
testcase_24 AC 102 ms
39,936 KB
testcase_25 AC 120 ms
41,308 KB
testcase_26 AC 121 ms
41,368 KB
testcase_27 AC 125 ms
41,144 KB
testcase_28 AC 119 ms
41,472 KB
testcase_29 AC 127 ms
41,184 KB
testcase_30 AC 122 ms
41,368 KB
testcase_31 AC 127 ms
41,504 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