結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,008 KB
testcase_01 AC 110 ms
40,604 KB
testcase_02 AC 112 ms
41,092 KB
testcase_03 AC 118 ms
41,160 KB
testcase_04 AC 122 ms
41,440 KB
testcase_05 AC 107 ms
40,376 KB
testcase_06 AC 119 ms
41,240 KB
testcase_07 AC 118 ms
40,216 KB
testcase_08 AC 123 ms
41,312 KB
testcase_09 AC 111 ms
40,180 KB
testcase_10 AC 114 ms
41,456 KB
testcase_11 AC 114 ms
39,904 KB
testcase_12 AC 128 ms
41,124 KB
testcase_13 AC 108 ms
39,904 KB
testcase_14 AC 123 ms
41,056 KB
testcase_15 AC 129 ms
41,240 KB
testcase_16 AC 111 ms
39,880 KB
testcase_17 AC 109 ms
40,052 KB
testcase_18 WA -
testcase_19 AC 117 ms
41,332 KB
testcase_20 WA -
testcase_21 AC 116 ms
41,272 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 100 ms
40,020 KB
testcase_26 AC 127 ms
41,256 KB
testcase_27 AC 117 ms
40,044 KB
testcase_28 AC 114 ms
41,304 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 117 ms
40,968 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