結果

問題 No.349 干支の置き物
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-03-01 00:03:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 560 bytes
コンパイル時間 2,117 ms
コンパイル使用メモリ 76,284 KB
実行使用メモリ 41,368 KB
最終ジャッジ日時 2024-06-02 07:37:27
合計ジャッジ時間 6,779 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
40,368 KB
testcase_01 AC 116 ms
41,136 KB
testcase_02 AC 104 ms
40,236 KB
testcase_03 AC 113 ms
40,868 KB
testcase_04 AC 110 ms
40,268 KB
testcase_05 AC 109 ms
40,088 KB
testcase_06 AC 119 ms
41,156 KB
testcase_07 AC 118 ms
41,156 KB
testcase_08 AC 110 ms
40,380 KB
testcase_09 AC 108 ms
40,408 KB
testcase_10 AC 113 ms
41,060 KB
testcase_11 AC 121 ms
41,084 KB
testcase_12 AC 120 ms
40,116 KB
testcase_13 AC 114 ms
40,100 KB
testcase_14 AC 117 ms
40,920 KB
testcase_15 AC 119 ms
41,152 KB
testcase_16 AC 109 ms
40,188 KB
testcase_17 AC 111 ms
40,280 KB
testcase_18 AC 114 ms
41,156 KB
testcase_19 AC 107 ms
40,148 KB
testcase_20 AC 117 ms
41,328 KB
testcase_21 AC 111 ms
40,256 KB
testcase_22 AC 117 ms
41,172 KB
testcase_23 AC 106 ms
40,292 KB
testcase_24 AC 103 ms
39,852 KB
testcase_25 AC 117 ms
41,060 KB
testcase_26 AC 115 ms
40,044 KB
testcase_27 AC 121 ms
41,368 KB
testcase_28 AC 108 ms
40,360 KB
testcase_29 AC 112 ms
40,452 KB
testcase_30 AC 106 ms
40,164 KB
testcase_31 AC 107 ms
40,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import static java.lang.System.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int n = sc.nextInt();
		Map<String,Integer> map = new LinkedHashMap<>();
		String s;
		for (int i=0; i<n; i++) {
			s = sc.next();
			map.put(s,map.getOrDefault(s,0));
			map.put(s,map.get(s)+1);
		}
		int max = -1;
		for (Map.Entry<String,Integer> entry : map.entrySet()) {
			max = Math.max(max,entry.getValue());
		}
		if (max <= (n+1)/2) {out.println("YES");}
		else {out.println("NO");}
	}
}
0