結果

問題 No.2777 Wild Flush
ユーザー ks2mks2m
提出日時 2024-06-07 21:26:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 541 ms / 2,000 ms
コード長 439 bytes
コンパイル時間 2,475 ms
コンパイル使用メモリ 74,684 KB
実行使用メモリ 48,776 KB
最終ジャッジ日時 2024-06-07 21:26:26
合計ジャッジ時間 12,247 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,432 KB
testcase_01 AC 97 ms
40,176 KB
testcase_02 AC 98 ms
40,020 KB
testcase_03 AC 107 ms
41,256 KB
testcase_04 AC 107 ms
41,192 KB
testcase_05 AC 104 ms
40,828 KB
testcase_06 AC 106 ms
41,024 KB
testcase_07 AC 106 ms
41,048 KB
testcase_08 AC 106 ms
40,944 KB
testcase_09 AC 441 ms
48,328 KB
testcase_10 AC 465 ms
48,300 KB
testcase_11 AC 414 ms
48,520 KB
testcase_12 AC 425 ms
48,300 KB
testcase_13 AC 541 ms
48,616 KB
testcase_14 AC 515 ms
48,776 KB
testcase_15 AC 470 ms
48,560 KB
testcase_16 AC 223 ms
47,284 KB
testcase_17 AC 493 ms
48,748 KB
testcase_18 AC 436 ms
48,468 KB
testcase_19 AC 492 ms
48,368 KB
testcase_20 AC 311 ms
47,792 KB
testcase_21 AC 254 ms
47,476 KB
testcase_22 AC 419 ms
48,668 KB
testcase_23 AC 389 ms
48,248 KB
testcase_24 AC 443 ms
48,176 KB
testcase_25 AC 515 ms
48,468 KB
testcase_26 AC 502 ms
48,476 KB
testcase_27 AC 404 ms
48,452 KB
testcase_28 AC 246 ms
46,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int k = sc.nextInt();
		int[] c = new int[n + 1];
		for (int i = 0; i < n; i++) {
			c[sc.nextInt()]++;
		}
		sc.close();

		for (int i = 1; i <= n; i++) {
			if (c[i] + c[0] >= k) {
				System.out.println("Yes");
				return;
			}
		}
		System.out.println("No");
	}
}
0