結果
問題 | No.349 干支の置き物 |
ユーザー | shinwisteria |
提出日時 | 2017-04-02 21:44:25 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 654 bytes |
コンパイル時間 | 3,600 ms |
コンパイル使用メモリ | 75,664 KB |
実行使用メモリ | 54,448 KB |
最終ジャッジ日時 | 2024-07-08 00:16:01 |
合計ジャッジ時間 | 8,964 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 135 ms
53,984 KB |
testcase_01 | AC | 135 ms
54,264 KB |
testcase_02 | AC | 131 ms
54,144 KB |
testcase_03 | AC | 133 ms
54,096 KB |
testcase_04 | AC | 140 ms
54,156 KB |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | AC | 135 ms
54,184 KB |
testcase_08 | RE | - |
testcase_09 | AC | 132 ms
54,324 KB |
testcase_10 | AC | 132 ms
54,084 KB |
testcase_11 | AC | 139 ms
53,888 KB |
testcase_12 | RE | - |
testcase_13 | AC | 137 ms
53,980 KB |
testcase_14 | AC | 133 ms
54,060 KB |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | AC | 139 ms
54,116 KB |
testcase_18 | WA | - |
testcase_19 | AC | 131 ms
54,008 KB |
testcase_20 | WA | - |
testcase_21 | AC | 137 ms
53,856 KB |
testcase_22 | AC | 135 ms
54,136 KB |
testcase_23 | WA | - |
testcase_24 | AC | 134 ms
53,984 KB |
testcase_25 | AC | 132 ms
53,880 KB |
testcase_26 | AC | 136 ms
53,956 KB |
testcase_27 | RE | - |
testcase_28 | AC | 136 ms
54,228 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 134 ms
54,064 KB |
ソースコード
import java.util.ArrayList; import java.util.Arrays; import java.util.Scanner; public class Eto { public static void main(String[] args) { // TODO 自動生成されたメソッド・スタブ Scanner s = new Scanner(System.in); int N = s.nextInt(); int[] eto = new int[12]; ArrayList<String> list = new ArrayList<>(); for(int i = 0;i < N;i++){ String str = s.nextLine(); if(list.contains(str)){ eto[list.indexOf(str)]++; }else{ list.add(str); eto[list.size()-1]++; } } s.close(); Arrays.sort(eto); if(N-eto[11] >= eto[11] + 1){ System.out.println("YES"); }else{ System.out.println("NO"); } } }