結果

問題 No.1692 Expectations
ユーザー bluemeganebluemegane
提出日時 2021-10-02 07:06:47
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 678 bytes
コンパイル時間 3,844 ms
コンパイル使用メモリ 109,776 KB
実行使用メモリ 52,572 KB
最終ジャッジ日時 2024-07-20 01:41:02
合計ジャッジ時間 3,389 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
27,752 KB
testcase_01 WA -
testcase_02 AC 40 ms
28,360 KB
testcase_03 AC 35 ms
25,960 KB
testcase_04 AC 40 ms
26,224 KB
testcase_05 AC 38 ms
26,204 KB
testcase_06 AC 37 ms
28,640 KB
testcase_07 AC 32 ms
27,620 KB
testcase_08 AC 40 ms
28,104 KB
testcase_09 WA -
testcase_10 AC 96 ms
42,240 KB
testcase_11 WA -
testcase_12 AC 31 ms
26,092 KB
testcase_13 AC 31 ms
23,736 KB
testcase_14 AC 40 ms
27,180 KB
testcase_15 AC 112 ms
47,896 KB
testcase_16 AC 41 ms
25,416 KB
testcase_17 AC 67 ms
34,272 KB
testcase_18 AC 47 ms
28,592 KB
testcase_19 WA -
testcase_20 AC 107 ms
51,352 KB
testcase_21 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

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

public class Hello
{
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var n = int.Parse(line[0]);
        var m = int.Parse(line[1]);
        line = Console.ReadLine().Trim().Split(' ');
        var a = Array.ConvertAll(line, int.Parse);
        getAns(n, m, a);
    }
    static void getAns(int n, int m, int[] a)
    {
        int ansmax, ansmin;
        var hs = new HashSet<int>();
        for (int i = 0; i < n; i++) hs.Add(a[i]);
        ansmax = hs.Count();
        ansmin = n == m ? 1 : 0;
        Console.WriteLine("{0} {1}", ansmax, ansmin);
    }
}
0