結果

問題 No.349 干支の置き物
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-20 00:06:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 781 bytes
コンパイル時間 2,342 ms
コンパイル使用メモリ 77,064 KB
実行使用メモリ 54,372 KB
最終ジャッジ日時 2024-10-02 07:58:49
合計ジャッジ時間 7,931 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
54,076 KB
testcase_01 AC 134 ms
53,892 KB
testcase_02 AC 134 ms
53,944 KB
testcase_03 AC 133 ms
54,156 KB
testcase_04 AC 139 ms
54,116 KB
testcase_05 AC 139 ms
54,168 KB
testcase_06 AC 136 ms
53,836 KB
testcase_07 AC 137 ms
53,964 KB
testcase_08 AC 142 ms
54,152 KB
testcase_09 AC 138 ms
53,716 KB
testcase_10 AC 136 ms
53,948 KB
testcase_11 AC 137 ms
53,816 KB
testcase_12 AC 136 ms
53,720 KB
testcase_13 AC 136 ms
54,132 KB
testcase_14 AC 137 ms
54,124 KB
testcase_15 AC 137 ms
53,896 KB
testcase_16 AC 136 ms
53,844 KB
testcase_17 AC 132 ms
53,912 KB
testcase_18 AC 134 ms
54,108 KB
testcase_19 AC 134 ms
54,008 KB
testcase_20 AC 137 ms
54,028 KB
testcase_21 AC 135 ms
54,000 KB
testcase_22 AC 132 ms
53,592 KB
testcase_23 AC 133 ms
54,108 KB
testcase_24 AC 135 ms
54,156 KB
testcase_25 AC 133 ms
54,136 KB
testcase_26 AC 138 ms
53,912 KB
testcase_27 AC 138 ms
53,988 KB
testcase_28 AC 139 ms
54,036 KB
testcase_29 AC 124 ms
53,128 KB
testcase_30 AC 139 ms
54,372 KB
testcase_31 AC 138 ms
53,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int N = sc.nextInt();
    HashMap<String, Integer> map = new HashMap<String, Integer>();
    for(int i = 0; i < N; i++) {
      String s = sc.next();
      if(map.containsKey(s)) {
        map.put(s, map.get(s) + 1);
      } else {
        map.put(s, 1);
      }
    }
    ArrayList<Integer> list = new ArrayList<Integer>();
    for(String s : map.keySet()) {
      list.add(map.get(s));
    }
    Collections.sort(list);
    int max = list.get(list.size() - 1);
    String ans = "NO";
    int sum = 0;
    for(int i = 0; i < list.size() - 1; i++) {
      sum += list.get(i);
    }
    if(sum >= max - 1) ans = "YES";
    System.out.println(ans);
  }
}
0