結果

問題 No.1692 Expectations
ユーザー eSeFeSeF
提出日時 2020-09-30 01:08:09
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,973 bytes
コンパイル時間 2,355 ms
コンパイル使用メモリ 111,164 KB
実行使用メモリ 49,696 KB
最終ジャッジ日時 2024-07-19 09:36:47
合計ジャッジ時間 3,167 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
27,352 KB
testcase_01 AC 31 ms
25,132 KB
testcase_02 AC 35 ms
27,552 KB
testcase_03 AC 33 ms
27,688 KB
testcase_04 AC 35 ms
23,096 KB
testcase_05 AC 33 ms
25,388 KB
testcase_06 AC 34 ms
25,644 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 33 ms
25,368 KB
testcase_10 WA -
testcase_11 AC 102 ms
41,364 KB
testcase_12 AC 29 ms
25,260 KB
testcase_13 AC 30 ms
25,260 KB
testcase_14 AC 41 ms
26,404 KB
testcase_15 AC 113 ms
44,776 KB
testcase_16 AC 41 ms
24,752 KB
testcase_17 AC 70 ms
32,180 KB
testcase_18 AC 47 ms
27,408 KB
testcase_19 AC 129 ms
47,580 KB
testcase_20 AC 114 ms
49,404 KB
testcase_21 AC 120 ms
49,696 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Linq;
namespace Solution
{
    class AC
    {
        static void Main(string[] args)
        {
            var (N, M) = Cin.Input<int, int>();
            var A = Cin.ReadSplitInt();
            int type = A.Distinct().Count();
            Console.WriteLine($"{type} 0");
        }
    }
}
static class Cin
{
    public static string Str() => Console.ReadLine();
    public static int Int() => int.Parse(Cin.Str());
    public static long Long() => long.Parse(Cin.Str());
    public static double Double() => double.Parse(Cin.Str());

    private static T Conv<T>(string value) => (T)Convert.ChangeType(value, typeof(T));
    public static (T, U) ReadTuple<T, U>(string[] input) => (Conv<T>(input[0]), Conv<U>(input[1]));
    public static (T, U, V) ReadTuple<T, U, V>(string[] input) => (Conv<T>(input[0]), Conv<U>(input[1]), Conv<V>(input[2]));
    public static (T, U, V, W) ReadTuple<T, U, V, W>(string[] input) => (Conv<T>(input[0]), Conv<U>(input[1]), Conv<V>(input[2]), Conv<W>(input[3]));
    public static (T, U, V, W, X) ReadTuple<T, U, V, W, X>(string[] input) => (Conv<T>(input[0]), Conv<U>(input[1]), Conv<V>(input[2]), Conv<W>(input[3]), Conv<X>(input[4]));

    public static (T, U) Input<T, U>() => ReadTuple<T, U>(ReadSplit());
    public static (T, U, V) Input<T, U, V>() => ReadTuple<T, U, V>(ReadSplit());
    public static (T, U, V, W) Input<T, U, V, W>() => ReadTuple<T, U, V, W>(ReadSplit());
    public static (T, U, V, W, X) Input<T, U, V, W, X>() => ReadTuple<T, U, V, W, X>(ReadSplit());

    public static string[] ReadSplit() => Console.ReadLine().Split();
    public static string[] ReadSplit(char separator) => Console.ReadLine().Split(separator);
    public static int[] ReadSplitInt() => Array.ConvertAll(ReadSplit(), int.Parse);
    public static long[] ReadSplitLong() => Array.ConvertAll(ReadSplit(), long.Parse);
    public static double[] ReadSplit_Double() => Array.ConvertAll(ReadSplit(), double.Parse);
}
0