結果

問題 No.349 干支の置き物
ユーザー matsuyoshi30matsuyoshi30
提出日時 2017-01-25 00:08:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 1,183 bytes
コンパイル時間 2,303 ms
コンパイル使用メモリ 77,936 KB
実行使用メモリ 41,728 KB
最終ジャッジ日時 2024-06-02 11:11:20
合計ジャッジ時間 7,394 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,092 KB
testcase_01 AC 123 ms
41,172 KB
testcase_02 AC 112 ms
40,044 KB
testcase_03 AC 118 ms
40,712 KB
testcase_04 AC 114 ms
40,352 KB
testcase_05 AC 109 ms
40,368 KB
testcase_06 AC 113 ms
40,172 KB
testcase_07 AC 125 ms
41,224 KB
testcase_08 AC 131 ms
41,328 KB
testcase_09 AC 132 ms
41,360 KB
testcase_10 AC 123 ms
41,068 KB
testcase_11 AC 137 ms
41,272 KB
testcase_12 AC 128 ms
41,476 KB
testcase_13 AC 120 ms
40,756 KB
testcase_14 AC 124 ms
41,244 KB
testcase_15 AC 111 ms
40,444 KB
testcase_16 AC 111 ms
40,292 KB
testcase_17 AC 109 ms
40,284 KB
testcase_18 AC 117 ms
41,112 KB
testcase_19 AC 105 ms
39,992 KB
testcase_20 AC 120 ms
40,188 KB
testcase_21 AC 120 ms
39,996 KB
testcase_22 AC 122 ms
40,896 KB
testcase_23 AC 125 ms
41,060 KB
testcase_24 AC 126 ms
41,300 KB
testcase_25 AC 121 ms
41,292 KB
testcase_26 AC 122 ms
40,124 KB
testcase_27 AC 127 ms
41,228 KB
testcase_28 AC 129 ms
41,524 KB
testcase_29 AC 127 ms
41,728 KB
testcase_30 AC 111 ms
40,300 KB
testcase_31 AC 126 ms
41,316 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+1) / 2) {
                ans = "NO";
                break;
            }
        }

        System.out.println(ans);

        in.close();
    }
}
0