結果

問題 No.349 干支の置き物
ユーザー kenji_shioyakenji_shioya
提出日時 2016-05-28 21:33:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 739 bytes
コンパイル時間 3,883 ms
コンパイル使用メモリ 78,208 KB
実行使用メモリ 41,812 KB
最終ジャッジ日時 2024-11-17 07:34:28
合計ジャッジ時間 9,439 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
40,972 KB
testcase_01 AC 136 ms
41,088 KB
testcase_02 AC 135 ms
41,076 KB
testcase_03 AC 136 ms
41,700 KB
testcase_04 AC 144 ms
41,480 KB
testcase_05 AC 139 ms
41,748 KB
testcase_06 AC 142 ms
41,436 KB
testcase_07 AC 140 ms
41,376 KB
testcase_08 AC 142 ms
41,316 KB
testcase_09 AC 141 ms
41,328 KB
testcase_10 AC 140 ms
41,252 KB
testcase_11 AC 143 ms
41,620 KB
testcase_12 AC 142 ms
41,360 KB
testcase_13 AC 142 ms
41,528 KB
testcase_14 AC 138 ms
41,388 KB
testcase_15 AC 140 ms
41,228 KB
testcase_16 AC 143 ms
41,452 KB
testcase_17 AC 137 ms
41,196 KB
testcase_18 AC 135 ms
41,504 KB
testcase_19 AC 137 ms
41,604 KB
testcase_20 AC 135 ms
41,484 KB
testcase_21 AC 137 ms
41,320 KB
testcase_22 AC 136 ms
41,116 KB
testcase_23 AC 136 ms
41,456 KB
testcase_24 AC 138 ms
41,812 KB
testcase_25 AC 137 ms
41,364 KB
testcase_26 AC 141 ms
41,608 KB
testcase_27 AC 143 ms
41,288 KB
testcase_28 AC 142 ms
41,176 KB
testcase_29 AC 145 ms
41,368 KB
testcase_30 AC 145 ms
41,452 KB
testcase_31 AC 143 ms
41,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise29{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    int size = sc.nextInt();
    String[] eto = new String[size];


    for (int n = 0; n < size; n++){
      eto[n] = sc.next();
    }
    int max = 0;
    for (int n = 0; n < size - 1; n++){
      int count = 1;
      for (int j = n + 1; j < size; j++){
        if (eto[n].equals(eto[j])){
          count++;
        }
      }

      max = Math.max(max, count);
    }

    boolean flag = true;

    if (size % 2 == 0){
      if (max > size / 2){
        flag = false;
      }
    }else{
      if (max > size / 2 + 1){
        flag = false;
      }
    }

    System.out.println(flag ? "YES" : "NO");
  }
}
0