結果

問題 No.182 新規性の虜
ユーザー ooh_20ooh_20
提出日時 2018-01-15 10:57:58
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 71 ms / 5,000 ms
コード長 1,064 bytes
コンパイル時間 827 ms
コンパイル使用メモリ 110,356 KB
実行使用メモリ 32,896 KB
最終ジャッジ日時 2024-06-08 12:51:42
合計ジャッジ時間 3,212 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
18,432 KB
testcase_01 AC 25 ms
18,048 KB
testcase_02 AC 25 ms
18,048 KB
testcase_03 AC 26 ms
18,048 KB
testcase_04 AC 25 ms
18,048 KB
testcase_05 AC 27 ms
18,048 KB
testcase_06 AC 25 ms
17,792 KB
testcase_07 AC 25 ms
18,176 KB
testcase_08 AC 53 ms
25,984 KB
testcase_09 AC 71 ms
32,896 KB
testcase_10 AC 65 ms
28,928 KB
testcase_11 AC 58 ms
27,392 KB
testcase_12 AC 43 ms
22,272 KB
testcase_13 AC 25 ms
18,176 KB
testcase_14 AC 25 ms
18,304 KB
testcase_15 AC 26 ms
18,304 KB
testcase_16 AC 27 ms
18,176 KB
testcase_17 AC 26 ms
18,304 KB
testcase_18 AC 60 ms
24,192 KB
testcase_19 AC 49 ms
22,144 KB
testcase_20 AC 42 ms
20,864 KB
testcase_21 AC 62 ms
24,832 KB
testcase_22 AC 47 ms
21,980 KB
testcase_23 AC 24 ms
18,176 KB
testcase_24 AC 68 ms
32,256 KB
testcase_25 AC 54 ms
22,656 KB
testcase_26 AC 33 ms
19,476 KB
testcase_27 AC 25 ms
18,048 KB
evil01.txt AC 79 ms
34,688 KB
evil02.txt AC 79 ms
34,688 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;

namespace lecture
{
    class MainClass
    {
        public static void Main(string[] args)
        {
            string row = Console.ReadLine();
            int N = int.Parse(row);

            row = Console.ReadLine();
            // 空白区切りで一旦文字列の配列に区切る
            string[] tmp = row.Split();

            Dictionary<string, int> novelty = new Dictionary<string, int>();

            for (int i = 0; i < N; i++)
            {
                string number = tmp[i];
                if (novelty.ContainsKey(number))
                {
                    novelty[number]++;
                }
                else
                {
                    novelty[number] = 1;
                }
            }

            int noveltyCnt = 0;
            foreach (int cnt in novelty.Values)
            {
                if (cnt == 1)
                {
                    noveltyCnt++;
                }
            }

            Console.WriteLine(noveltyCnt);
        }
    }
}
0