結果

問題 No.182 新規性の虜
ユーザー 紙ぺーぱー紙ぺーぱー
提出日時 2015-04-07 22:49:12
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 100 ms / 5,000 ms
コード長 1,586 bytes
コンパイル時間 5,871 ms
コンパイル使用メモリ 108,032 KB
実行使用メモリ 31,616 KB
最終ジャッジ日時 2024-12-26 18:36:17
合計ジャッジ時間 9,665 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
18,688 KB
testcase_01 AC 37 ms
18,816 KB
testcase_02 AC 35 ms
18,816 KB
testcase_03 AC 36 ms
18,688 KB
testcase_04 AC 40 ms
18,688 KB
testcase_05 AC 34 ms
18,944 KB
testcase_06 AC 34 ms
18,816 KB
testcase_07 AC 35 ms
18,816 KB
testcase_08 AC 76 ms
26,112 KB
testcase_09 AC 100 ms
31,616 KB
testcase_10 AC 84 ms
28,672 KB
testcase_11 AC 81 ms
26,880 KB
testcase_12 AC 58 ms
22,412 KB
testcase_13 AC 36 ms
18,944 KB
testcase_14 AC 34 ms
18,560 KB
testcase_15 AC 34 ms
18,816 KB
testcase_16 AC 35 ms
18,688 KB
testcase_17 AC 34 ms
18,688 KB
testcase_18 AC 74 ms
24,320 KB
testcase_19 AC 62 ms
22,784 KB
testcase_20 AC 54 ms
21,120 KB
testcase_21 AC 79 ms
25,216 KB
testcase_22 AC 59 ms
22,460 KB
testcase_23 AC 33 ms
18,432 KB
testcase_24 AC 87 ms
30,976 KB
testcase_25 AC 73 ms
23,936 KB
testcase_26 AC 47 ms
20,504 KB
testcase_27 AC 34 ms
18,688 KB
evil01.txt AC 103 ms
33,408 KB
evil02.txt AC 102 ms
33,408 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, params char[] sep)
    {
        var s = Console.ReadLine().Split(sep);
        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