結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
41,448 KB
testcase_01 AC 104 ms
41,672 KB
testcase_02 WA -
testcase_03 AC 106 ms
41,616 KB
testcase_04 AC 120 ms
41,440 KB
testcase_05 AC 117 ms
41,256 KB
testcase_06 AC 116 ms
41,688 KB
testcase_07 AC 112 ms
41,480 KB
testcase_08 AC 102 ms
41,680 KB
testcase_09 AC 107 ms
41,612 KB
testcase_10 AC 108 ms
41,720 KB
testcase_11 AC 107 ms
41,324 KB
testcase_12 AC 101 ms
41,764 KB
testcase_13 AC 104 ms
41,352 KB
testcase_14 AC 110 ms
41,532 KB
testcase_15 AC 109 ms
41,636 KB
testcase_16 AC 95 ms
41,732 KB
testcase_17 AC 100 ms
41,480 KB
testcase_18 AC 103 ms
41,608 KB
testcase_19 WA -
testcase_20 AC 107 ms
41,580 KB
testcase_21 WA -
testcase_22 AC 118 ms
41,836 KB
testcase_23 AC 120 ms
41,444 KB
testcase_24 AC 99 ms
41,292 KB
testcase_25 AC 107 ms
41,488 KB
testcase_26 WA -
testcase_27 AC 123 ms
41,576 KB
testcase_28 WA -
testcase_29 AC 106 ms
41,468 KB
testcase_30 AC 115 ms
41,612 KB
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

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