結果

問題 No.349 干支の置き物
ユーザー crazybbb3crazybbb3
提出日時 2017-01-31 21:06:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 1,447 bytes
コンパイル時間 2,472 ms
コンパイル使用メモリ 88,792 KB
実行使用メモリ 50,676 KB
最終ジャッジ日時 2024-06-06 10:23:24
合計ジャッジ時間 5,472 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
50,424 KB
testcase_01 AC 63 ms
50,616 KB
testcase_02 AC 62 ms
50,524 KB
testcase_03 AC 60 ms
50,544 KB
testcase_04 AC 61 ms
50,572 KB
testcase_05 AC 66 ms
50,284 KB
testcase_06 AC 65 ms
50,676 KB
testcase_07 AC 65 ms
50,496 KB
testcase_08 AC 64 ms
50,344 KB
testcase_09 AC 64 ms
50,312 KB
testcase_10 AC 62 ms
50,192 KB
testcase_11 AC 63 ms
50,620 KB
testcase_12 AC 63 ms
50,608 KB
testcase_13 AC 64 ms
50,596 KB
testcase_14 AC 65 ms
50,484 KB
testcase_15 AC 65 ms
50,576 KB
testcase_16 AC 60 ms
50,612 KB
testcase_17 AC 60 ms
50,664 KB
testcase_18 AC 61 ms
50,420 KB
testcase_19 AC 64 ms
50,260 KB
testcase_20 AC 65 ms
50,596 KB
testcase_21 AC 63 ms
50,668 KB
testcase_22 AC 63 ms
50,116 KB
testcase_23 AC 65 ms
50,452 KB
testcase_24 AC 63 ms
50,520 KB
testcase_25 AC 66 ms
50,564 KB
testcase_26 AC 65 ms
50,636 KB
testcase_27 AC 63 ms
50,240 KB
testcase_28 AC 61 ms
50,604 KB
testcase_29 AC 62 ms
50,168 KB
testcase_30 AC 63 ms
50,608 KB
testcase_31 AC 66 ms
50,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.HashMap;
import java.util.StringTokenizer;

public class Main {

    void solve() throws IOException {
        int n = ni();
        HashMap<String, Integer> map = new HashMap<>();
        for (int i = 0; i < n; i++) {
            String s = ns();
            map.merge(s, 1, (x, y) -> x + y);
        }

        for (int x : map.values()) {
            if (x > (n + 1) / 2) {
                out.println("NO");
                return;
            }
        }
        out.println("YES");
    }

    String ns() throws IOException {
        while (!tok.hasMoreTokens()) {
            tok = new StringTokenizer(in.readLine(), " ");
        }
        return tok.nextToken();
    }

    int ni() throws IOException {
        return Integer.parseInt(ns());
    }

    long nl() throws IOException {
        return Long.parseLong(ns());
    }

    double nd() throws IOException {
        return Double.parseDouble(ns());
    }

    static BufferedReader in;
    static PrintWriter out;
    static StringTokenizer tok;

    public static void main(String[] args) throws IOException {
        in = new BufferedReader(new InputStreamReader(System.in));
        out = new PrintWriter(System.out);
        tok = new StringTokenizer("");
        Main main = new Main();
        main.solve();
        out.close();
    }
}
0