結果

問題 No.182 新規性の虜
ユーザー huffman56huffman56
提出日時 2022-10-30 12:06:42
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 91 ms / 5,000 ms
コード長 727 bytes
コンパイル時間 794 ms
コンパイル使用メモリ 110,252 KB
実行使用メモリ 39,280 KB
最終ジャッジ日時 2024-07-07 04:51:57
合計ジャッジ時間 3,222 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
25,180 KB
testcase_01 AC 27 ms
27,436 KB
testcase_02 AC 28 ms
25,516 KB
testcase_03 AC 27 ms
25,652 KB
testcase_04 AC 27 ms
27,444 KB
testcase_05 AC 26 ms
25,432 KB
testcase_06 AC 28 ms
25,652 KB
testcase_07 AC 27 ms
25,524 KB
testcase_08 AC 64 ms
34,536 KB
testcase_09 AC 86 ms
39,280 KB
testcase_10 AC 77 ms
34,788 KB
testcase_11 AC 68 ms
33,240 KB
testcase_12 AC 47 ms
30,096 KB
testcase_13 AC 26 ms
25,180 KB
testcase_14 AC 27 ms
25,432 KB
testcase_15 AC 24 ms
25,388 KB
testcase_16 AC 26 ms
25,436 KB
testcase_17 AC 26 ms
25,260 KB
testcase_18 AC 66 ms
32,844 KB
testcase_19 AC 56 ms
27,576 KB
testcase_20 AC 48 ms
26,848 KB
testcase_21 AC 79 ms
31,116 KB
testcase_22 AC 64 ms
25,788 KB
testcase_23 AC 32 ms
25,308 KB
testcase_24 AC 91 ms
36,404 KB
testcase_25 AC 65 ms
28,076 KB
testcase_26 AC 38 ms
28,764 KB
testcase_27 AC 26 ms
25,312 KB
evil01.txt AC 82 ms
36,788 KB
evil02.txt AC 81 ms
38,124 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;

namespace SortItems
{
    class Program
    {
        static void Main(string[] args)
        {
            var n = int.Parse(Console.ReadLine());
            var nums = Console.ReadLine().Split().Select(int.Parse).ToArray();
            Array.Sort(nums);
            var d = new Dictionary<int, int>();

            for (var i = 0; i < n; i++)
            {
                if (d.ContainsKey(nums[i]))
                {
                    d[nums[i]]++;
                }
                else
                {
                    d[nums[i]] = 1;
                }
            }

            Console.WriteLine(d.Count(x => x.Value == 1));

        }
    }
}
0