結果

問題 No.182 新規性の虜
ユーザー 紙ぺーぱー紙ぺーぱー
提出日時 2015-04-13 06:06:08
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 68 ms / 5,000 ms
コード長 1,568 bytes
コンパイル時間 3,197 ms
コンパイル使用メモリ 115,196 KB
実行使用メモリ 36,472 KB
最終ジャッジ日時 2024-06-08 02:48:27
合計ジャッジ時間 3,066 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
27,092 KB
testcase_01 AC 28 ms
24,916 KB
testcase_02 AC 28 ms
25,032 KB
testcase_03 AC 28 ms
24,776 KB
testcase_04 AC 29 ms
26,972 KB
testcase_05 AC 28 ms
27,088 KB
testcase_06 AC 28 ms
26,952 KB
testcase_07 AC 28 ms
27,088 KB
testcase_08 AC 55 ms
30,208 KB
testcase_09 AC 68 ms
36,472 KB
testcase_10 AC 63 ms
34,148 KB
testcase_11 AC 58 ms
32,624 KB
testcase_12 AC 43 ms
27,440 KB
testcase_13 AC 28 ms
25,032 KB
testcase_14 AC 28 ms
25,040 KB
testcase_15 AC 27 ms
26,952 KB
testcase_16 AC 27 ms
27,080 KB
testcase_17 AC 26 ms
24,900 KB
testcase_18 AC 54 ms
32,364 KB
testcase_19 AC 48 ms
27,692 KB
testcase_20 AC 43 ms
26,436 KB
testcase_21 AC 58 ms
28,956 KB
testcase_22 AC 45 ms
27,348 KB
testcase_23 AC 27 ms
25,132 KB
testcase_24 AC 68 ms
34,248 KB
testcase_25 AC 55 ms
29,360 KB
testcase_26 AC 36 ms
28,424 KB
testcase_27 AC 27 ms
24,900 KB
evil01.txt AC 74 ms
37,752 KB
evil02.txt AC 77 ms
37,608 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.Collections.Generic;
using System.Linq;

static public class Program
{
    static public void Main()
    {
        var n = readInteger().Validate(x => 1 <= x && x <= (int)1e5);
        var a = readInteger(n).ValidateArray(x => 1 <= x && x <= (int)1e9);
        var dic = new Dictionary<int, int>();
        foreach (var x in a)
        {
            if (dic.ContainsKey(x))
                dic[x]++;
            else dic[x] = 1;
        }
        var cnt = dic.Count(x => x.Value == 1);
        Console.WriteLine(cnt);
    }

    static int readInteger()
    {
        var s = Console.ReadLine();
        return int.Parse(s);
    }
    static int[] readInteger(int n)
    {
        var s = Console.ReadLine().Split(' ');
        if (s.Length != n)
            throw new Exception(string.Format("invalid input, expected{0} actual{1}", n, s.Length));
        var ret = new int[n];
        for (int i = 0; i < n; i++)
            ret[i] = int.Parse(s[i]);
        return ret;
    }
    static void readEOF()
    {
        if (Console.In.Peek() >= 0)
            throw new Exception("invalid input too long input file");
    }

}
static public class Ex
{
    static public T Validate<T>(this T input, Func<T, bool> f)
    {
        if (!f(input))
            throw new Exception("invalid input");
        return input;
    }
    static public T[] ValidateArray<T>(this T[] input, Func<T, bool> f)
    {
        foreach (var x in input)
            if (!f(x))
                throw new Exception("invalid input");
        return input;
    }
}


0