結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
40,592 KB
testcase_01 AC 123 ms
41,368 KB
testcase_02 AC 126 ms
41,384 KB
testcase_03 AC 121 ms
41,316 KB
testcase_04 AC 113 ms
40,788 KB
testcase_05 AC 119 ms
41,100 KB
testcase_06 AC 118 ms
41,160 KB
testcase_07 AC 117 ms
41,004 KB
testcase_08 AC 115 ms
41,152 KB
testcase_09 AC 119 ms
41,120 KB
testcase_10 AC 103 ms
39,908 KB
testcase_11 AC 114 ms
40,600 KB
testcase_12 AC 115 ms
40,124 KB
testcase_13 AC 120 ms
41,172 KB
testcase_14 AC 123 ms
41,248 KB
testcase_15 AC 113 ms
40,560 KB
testcase_16 AC 114 ms
41,088 KB
testcase_17 AC 102 ms
39,980 KB
testcase_18 AC 116 ms
41,392 KB
testcase_19 WA -
testcase_20 AC 120 ms
41,012 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 110 ms
40,268 KB
testcase_24 WA -
testcase_25 AC 108 ms
40,104 KB
testcase_26 AC 125 ms
41,148 KB
testcase_27 AC 124 ms
41,124 KB
testcase_28 AC 122 ms
40,864 KB
testcase_29 WA -
testcase_30 AC 121 ms
41,340 KB
testcase_31 AC 122 ms
40,976 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(n % 2 == 0) {
                if(count > n/2 + 1) {
                    ans = "NO";
                    break;
                }
            } else {
                if(count >= n/2 + 1) {
                    ans = "NO";
                    break;
                }
            }
        }

        System.out.println(ans);

        in.close();
    }
}
0