結果

問題 No.349 干支の置き物
ユーザー shinwisteriashinwisteria
提出日時 2017-04-02 21:53:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 685 bytes
コンパイル時間 2,933 ms
コンパイル使用メモリ 75,080 KB
実行使用メモリ 41,672 KB
最終ジャッジ日時 2024-07-08 00:16:57
合計ジャッジ時間 7,377 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
41,440 KB
testcase_01 AC 101 ms
41,380 KB
testcase_02 AC 107 ms
41,116 KB
testcase_03 AC 109 ms
41,564 KB
testcase_04 AC 114 ms
41,456 KB
testcase_05 AC 111 ms
41,388 KB
testcase_06 AC 112 ms
41,472 KB
testcase_07 AC 114 ms
41,360 KB
testcase_08 AC 105 ms
41,296 KB
testcase_09 AC 102 ms
41,508 KB
testcase_10 AC 112 ms
41,608 KB
testcase_11 AC 115 ms
39,968 KB
testcase_12 AC 114 ms
41,268 KB
testcase_13 AC 121 ms
41,360 KB
testcase_14 AC 113 ms
41,624 KB
testcase_15 AC 106 ms
41,484 KB
testcase_16 AC 105 ms
41,392 KB
testcase_17 AC 120 ms
41,268 KB
testcase_18 AC 103 ms
41,356 KB
testcase_19 AC 114 ms
41,240 KB
testcase_20 AC 104 ms
41,236 KB
testcase_21 AC 109 ms
41,236 KB
testcase_22 AC 111 ms
41,376 KB
testcase_23 AC 101 ms
41,672 KB
testcase_24 AC 112 ms
41,580 KB
testcase_25 AC 110 ms
41,280 KB
testcase_26 AC 115 ms
41,580 KB
testcase_27 AC 116 ms
41,408 KB
testcase_28 AC 115 ms
41,484 KB
testcase_29 AC 105 ms
41,360 KB
testcase_30 AC 116 ms
41,356 KB
testcase_31 AC 118 ms
41,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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.next();
			if(list.contains(str)){
				eto[list.indexOf(str)]++;
			}else{
				//System.out.println(list);
				list.add(str);
				eto[list.indexOf(str)]++;
			}
		}
		s.close();
		Arrays.sort(eto);
		if(N-eto[11] >= eto[11] -1){
			System.out.println("YES");
		}else{
			System.out.println("NO");
		}

	}

}
0