結果

問題 No.349 干支の置き物
ユーザー 37zigen37zigen
提出日時 2016-03-12 02:06:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 174 ms / 2,000 ms
コード長 661 bytes
コンパイル時間 3,918 ms
コンパイル使用メモリ 79,284 KB
実行使用メモリ 42,140 KB
最終ジャッジ日時 2024-11-17 07:25:05
合計ジャッジ時間 10,162 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 162 ms
41,568 KB
testcase_01 AC 163 ms
41,540 KB
testcase_02 AC 149 ms
41,032 KB
testcase_03 AC 145 ms
41,244 KB
testcase_04 AC 159 ms
41,808 KB
testcase_05 AC 159 ms
41,732 KB
testcase_06 AC 162 ms
41,412 KB
testcase_07 AC 164 ms
41,356 KB
testcase_08 AC 165 ms
41,672 KB
testcase_09 AC 170 ms
41,724 KB
testcase_10 AC 160 ms
41,764 KB
testcase_11 AC 171 ms
41,580 KB
testcase_12 AC 166 ms
41,736 KB
testcase_13 AC 171 ms
41,652 KB
testcase_14 AC 170 ms
42,140 KB
testcase_15 AC 165 ms
42,012 KB
testcase_16 AC 167 ms
41,936 KB
testcase_17 AC 167 ms
41,948 KB
testcase_18 AC 167 ms
41,952 KB
testcase_19 AC 168 ms
41,920 KB
testcase_20 AC 161 ms
41,480 KB
testcase_21 AC 166 ms
41,860 KB
testcase_22 AC 168 ms
41,728 KB
testcase_23 AC 165 ms
41,984 KB
testcase_24 AC 162 ms
41,720 KB
testcase_25 AC 159 ms
41,760 KB
testcase_26 AC 164 ms
41,648 KB
testcase_27 AC 174 ms
41,752 KB
testcase_28 AC 169 ms
41,760 KB
testcase_29 AC 167 ms
41,720 KB
testcase_30 AC 167 ms
41,568 KB
testcase_31 AC 166 ms
41,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package 練習;
import java.util.Date;
import java.util.HashMap;
import java.util.Scanner;
public class main{
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		double n=sc.nextDouble();
		long exec_time=new Date().getTime();
		HashMap<String,Integer> map=new HashMap<>();
		for(int i=0;i<n;i++){
			String x=sc.next();
			if(!map.containsKey(x)){
				map.put(x, 1);
			}else{
				map.put(x,map.get(x)+1);
			}
		}
		int max=0;
		for(int v:map.values())max=Math.max(v, max);
		if(max*2 <= n+1){
			System.out.println("YES");
		}else{
			System.out.println("NO");
		}
		System.err.println(new Date().getTime()-exec_time+"ms");

	}
}
0