結果

問題 No.349 干支の置き物
ユーザー ぴろずぴろず
提出日時 2016-04-15 14:33:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 167 ms / 2,000 ms
コード長 470 bytes
コンパイル時間 2,607 ms
コンパイル使用メモリ 91,128 KB
実行使用メモリ 42,072 KB
最終ジャッジ日時 2024-11-17 07:30:26
合計ジャッジ時間 8,890 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 158 ms
41,560 KB
testcase_01 AC 159 ms
41,992 KB
testcase_02 AC 155 ms
41,908 KB
testcase_03 AC 159 ms
41,776 KB
testcase_04 AC 163 ms
41,984 KB
testcase_05 AC 159 ms
41,780 KB
testcase_06 AC 158 ms
41,508 KB
testcase_07 AC 159 ms
41,920 KB
testcase_08 AC 163 ms
42,064 KB
testcase_09 AC 167 ms
41,840 KB
testcase_10 AC 156 ms
41,760 KB
testcase_11 AC 166 ms
41,704 KB
testcase_12 AC 164 ms
41,780 KB
testcase_13 AC 163 ms
41,888 KB
testcase_14 AC 165 ms
41,936 KB
testcase_15 AC 162 ms
41,592 KB
testcase_16 AC 161 ms
41,476 KB
testcase_17 AC 156 ms
41,920 KB
testcase_18 AC 156 ms
41,644 KB
testcase_19 AC 155 ms
41,688 KB
testcase_20 AC 153 ms
42,000 KB
testcase_21 AC 155 ms
41,512 KB
testcase_22 AC 154 ms
41,628 KB
testcase_23 AC 158 ms
41,612 KB
testcase_24 AC 156 ms
41,828 KB
testcase_25 AC 156 ms
41,744 KB
testcase_26 AC 161 ms
41,768 KB
testcase_27 AC 162 ms
41,844 KB
testcase_28 AC 157 ms
42,072 KB
testcase_29 AC 162 ms
41,888 KB
testcase_30 AC 157 ms
41,744 KB
testcase_31 AC 162 ms
41,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no349;

import java.util.Scanner;
import java.util.stream.Collectors;
import java.util.stream.Stream;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		long max =
				Stream.generate(sc::next).limit(n)
				.collect(Collectors.groupingBy(x -> x, Collectors.counting())).values().stream().mapToLong(x -> x).max().getAsLong();
		System.out.println(max <= (n+1)/2 ? "YES" : "NO");
	}

}
0