結果

問題 No.349 干支の置き物
ユーザー matsuyoshi30matsuyoshi30
提出日時 2017-01-25 00:06:29
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,181 bytes
コンパイル時間 1,863 ms
コンパイル使用メモリ 77,836 KB
実行使用メモリ 41,448 KB
最終ジャッジ日時 2024-06-02 11:11:12
合計ジャッジ時間 6,527 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
40,988 KB
testcase_01 AC 119 ms
41,276 KB
testcase_02 AC 119 ms
41,316 KB
testcase_03 AC 118 ms
40,920 KB
testcase_04 AC 121 ms
41,236 KB
testcase_05 AC 108 ms
40,160 KB
testcase_06 AC 116 ms
41,068 KB
testcase_07 AC 114 ms
41,036 KB
testcase_08 AC 111 ms
40,340 KB
testcase_09 AC 118 ms
41,232 KB
testcase_10 AC 117 ms
40,952 KB
testcase_11 AC 125 ms
41,264 KB
testcase_12 AC 109 ms
40,408 KB
testcase_13 AC 110 ms
40,464 KB
testcase_14 AC 119 ms
41,196 KB
testcase_15 AC 115 ms
41,004 KB
testcase_16 AC 114 ms
40,416 KB
testcase_17 AC 102 ms
40,148 KB
testcase_18 AC 116 ms
40,996 KB
testcase_19 WA -
testcase_20 AC 115 ms
41,336 KB
testcase_21 AC 114 ms
39,852 KB
testcase_22 AC 118 ms
41,296 KB
testcase_23 AC 103 ms
40,040 KB
testcase_24 AC 123 ms
41,204 KB
testcase_25 AC 121 ms
41,100 KB
testcase_26 AC 122 ms
41,448 KB
testcase_27 AC 119 ms
41,164 KB
testcase_28 AC 113 ms
40,276 KB
testcase_29 AC 120 ms
41,032 KB
testcase_30 AC 106 ms
40,140 KB
testcase_31 AC 118 ms
41,132 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 = "";

        if(n == 2 && a[0].equals(a[1])) {
            ans = "NO";
        } else {
            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