結果

問題 No.2777 Wild Flush
ユーザー tentententen
提出日時 2024-06-10 15:43:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 227 ms / 2,000 ms
コード長 1,475 bytes
コンパイル時間 2,424 ms
コンパイル使用メモリ 79,640 KB
実行使用メモリ 46,112 KB
最終ジャッジ日時 2024-06-10 15:44:00
合計ジャッジ時間 8,161 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
37,468 KB
testcase_01 AC 54 ms
37,404 KB
testcase_02 AC 65 ms
37,472 KB
testcase_03 AC 52 ms
37,568 KB
testcase_04 AC 53 ms
37,472 KB
testcase_05 AC 53 ms
37,360 KB
testcase_06 AC 51 ms
37,264 KB
testcase_07 AC 49 ms
37,408 KB
testcase_08 AC 51 ms
37,408 KB
testcase_09 AC 188 ms
45,352 KB
testcase_10 AC 186 ms
45,392 KB
testcase_11 AC 188 ms
45,496 KB
testcase_12 AC 216 ms
45,784 KB
testcase_13 AC 218 ms
46,112 KB
testcase_14 AC 227 ms
45,880 KB
testcase_15 AC 215 ms
45,860 KB
testcase_16 AC 95 ms
39,728 KB
testcase_17 AC 219 ms
46,084 KB
testcase_18 AC 192 ms
45,268 KB
testcase_19 AC 198 ms
44,956 KB
testcase_20 AC 147 ms
41,616 KB
testcase_21 AC 127 ms
41,060 KB
testcase_22 AC 190 ms
45,052 KB
testcase_23 AC 184 ms
45,052 KB
testcase_24 AC 199 ms
45,260 KB
testcase_25 AC 213 ms
45,980 KB
testcase_26 AC 182 ms
45,572 KB
testcase_27 AC 161 ms
44,084 KB
testcase_28 AC 115 ms
40,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int k = sc.nextInt();
        int[] counts = new int[n];
        int wild = 0;
        while (n-- > 0) {
            int x = sc.nextInt();
            if (x == 0) {
                wild++;
            } else {
                counts[x- 1]++;
            }
        }
        System.out.println(Arrays.stream(counts).max().orElse(0) + wild >= k ? "Yes" : "No");
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0