結果

問題 No.349 干支の置き物
ユーザー matsuyoshi30matsuyoshi30
提出日時 2017-01-24 23:59:15
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,065 bytes
コンパイル時間 2,214 ms
コンパイル使用メモリ 75,356 KB
実行使用メモリ 41,476 KB
最終ジャッジ日時 2024-06-02 11:10:43
合計ジャッジ時間 6,770 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
40,996 KB
testcase_01 AC 103 ms
39,948 KB
testcase_02 AC 111 ms
40,076 KB
testcase_03 AC 104 ms
39,960 KB
testcase_04 AC 105 ms
40,336 KB
testcase_05 AC 110 ms
40,408 KB
testcase_06 AC 109 ms
40,372 KB
testcase_07 AC 109 ms
40,276 KB
testcase_08 AC 117 ms
41,252 KB
testcase_09 AC 104 ms
40,236 KB
testcase_10 AC 108 ms
40,168 KB
testcase_11 AC 108 ms
40,240 KB
testcase_12 AC 116 ms
41,476 KB
testcase_13 AC 117 ms
41,048 KB
testcase_14 AC 107 ms
40,016 KB
testcase_15 AC 122 ms
41,148 KB
testcase_16 AC 118 ms
41,128 KB
testcase_17 AC 111 ms
40,972 KB
testcase_18 AC 106 ms
39,864 KB
testcase_19 WA -
testcase_20 AC 104 ms
39,840 KB
testcase_21 WA -
testcase_22 AC 99 ms
40,016 KB
testcase_23 AC 108 ms
39,868 KB
testcase_24 AC 109 ms
40,020 KB
testcase_25 AC 116 ms
40,744 KB
testcase_26 AC 113 ms
40,320 KB
testcase_27 AC 119 ms
41,180 KB
testcase_28 AC 108 ms
40,336 KB
testcase_29 AC 108 ms
40,188 KB
testcase_30 AC 121 ms
41,232 KB
testcase_31 AC 119 ms
41,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int n = in.nextInt();
        String[] a = new String[n];

        for(int i=0; i<n; i++) {
            a[i] = in.next();
        }

        /*
          N個の干支の置物がある
          12種類の干支のうち、どれかひとつでもN/2+1個以上あれば
          隣に置かざるをえない
         */

        String[] eto = {"ne", "ushi", "tora", "u", "tatsu", "mi", "uma", "hitsuji", "saru", "tori", "inu", "i"};

        String ans = "YES";

        for(int i=0; i<12; i++) {
            int count = 0;
            for(int j=0; j<n; j++) {
                if(a[j].equals(eto[i])) {
                    count++;
                }
            }
            if(count > n/2 + 1) {
                ans = "NO";
                break;
            }
        }

        System.out.println(ans);

        in.close();
    }
}
0