結果

問題 No.182 新規性の虜
ユーザー ooh_21ooh_21
提出日時 2018-01-15 14:32:02
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 68 ms / 5,000 ms
コード長 1,172 bytes
コンパイル時間 994 ms
コンパイル使用メモリ 104,448 KB
実行使用メモリ 30,848 KB
最終ジャッジ日時 2024-06-08 12:52:14
合計ジャッジ時間 2,738 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
18,048 KB
testcase_01 AC 22 ms
18,048 KB
testcase_02 AC 22 ms
17,920 KB
testcase_03 AC 21 ms
17,792 KB
testcase_04 AC 21 ms
17,792 KB
testcase_05 AC 21 ms
17,792 KB
testcase_06 AC 21 ms
18,048 KB
testcase_07 AC 21 ms
18,048 KB
testcase_08 AC 51 ms
24,960 KB
testcase_09 AC 68 ms
30,848 KB
testcase_10 AC 61 ms
28,032 KB
testcase_11 AC 53 ms
26,112 KB
testcase_12 AC 38 ms
21,376 KB
testcase_13 AC 22 ms
18,048 KB
testcase_14 AC 21 ms
18,048 KB
testcase_15 AC 21 ms
17,920 KB
testcase_16 AC 21 ms
17,920 KB
testcase_17 AC 21 ms
17,920 KB
testcase_18 AC 50 ms
23,680 KB
testcase_19 AC 44 ms
21,888 KB
testcase_20 AC 38 ms
20,480 KB
testcase_21 AC 54 ms
24,576 KB
testcase_22 AC 39 ms
21,532 KB
testcase_23 AC 22 ms
17,920 KB
testcase_24 AC 62 ms
30,080 KB
testcase_25 AC 50 ms
22,656 KB
testcase_26 AC 32 ms
19,436 KB
testcase_27 AC 22 ms
17,920 KB
evil01.txt AC 73 ms
32,512 KB
evil02.txt AC 72 ms
32,384 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;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace lecture2018._1._15
{
    class Program
    {
        static void Main(string[] args)
        {
            string line = Console.ReadLine();
            int N = int.Parse(line);

            line = Console.ReadLine();

            string[] hoge = line.Split();

            int[] Num = new int[N];
            for(int i = 0;i < N;i++)
            {
                Num[i] = int.Parse(hoge[i]);
            }

            Dictionary<int, int> counts = new Dictionary<int,int>();
            for(int i = 0;i < N;i++)
            {
                if (counts.ContainsKey(Num[i])){
                    counts[Num[i]] += 1;
                }
                else
                {
                    counts[Num[i]] = 1;
                }
            }
            int ans = 0;
            foreach (int key in counts.Keys)
            {
                if (counts[key] == 1)
                {
                    ans++;
                }
            }

            Console.WriteLine(ans);
        }
    }
}
0