結果

問題 No.2334 Distinct Cards
ユーザー bluemeganebluemegane
提出日時 2023-06-03 10:45:31
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 858 bytes
コンパイル時間 2,969 ms
コンパイル使用メモリ 114,576 KB
実行使用メモリ 38,032 KB
最終ジャッジ日時 2024-06-09 03:22:29
合計ジャッジ時間 5,522 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
25,200 KB
testcase_01 AC 27 ms
27,440 KB
testcase_02 AC 27 ms
25,536 KB
testcase_03 AC 27 ms
25,528 KB
testcase_04 AC 28 ms
27,232 KB
testcase_05 AC 29 ms
25,644 KB
testcase_06 AC 27 ms
23,480 KB
testcase_07 AC 33 ms
27,652 KB
testcase_08 AC 33 ms
25,904 KB
testcase_09 AC 33 ms
25,964 KB
testcase_10 AC 34 ms
25,708 KB
testcase_11 AC 31 ms
25,644 KB
testcase_12 AC 82 ms
34,960 KB
testcase_13 AC 84 ms
34,960 KB
testcase_14 AC 85 ms
35,228 KB
testcase_15 AC 83 ms
37,044 KB
testcase_16 AC 84 ms
32,912 KB
testcase_17 AC 86 ms
38,032 KB
testcase_18 AC 84 ms
35,984 KB
testcase_19 AC 88 ms
38,028 KB
testcase_20 AC 58 ms
31,352 KB
testcase_21 AC 59 ms
33,400 KB
testcase_22 AC 59 ms
31,536 KB
testcase_23 AC 27 ms
25,248 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Linq;
using System.Collections.Generic;
using System;

public class Hello
{
    static void Main()
    {

        string[] line = Console.ReadLine().Trim().Split(' ');
        var n = int.Parse(line[0]);
        var k = int.Parse(line[1]);
        line = Console.ReadLine().Trim().Split(' ');
        var a = Array.ConvertAll(line, int.Parse);
        getAns(n, k, a);
    }
    static void getAns(int n, int k, int[] a)
    {
        var d = new Dictionary<int, int>();
        foreach (var x in a)
            if (d.ContainsKey(x)) d[x]++;
            else d[x] = 1;
        var ans = 0;
        var c = 0;
        foreach (var x in d.OrderByDescending(x => x.Value))
        {
            if (c + x.Value < k) { ans++; c += x.Value; }
            else { Console.WriteLine(ans + 1); return; }
        }
        Console.WriteLine(ans);
    }
}
0