結果

問題 No.182 新規性の虜
ユーザー phsplsphspls
提出日時 2020-03-27 23:52:29
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 71 ms / 5,000 ms
コード長 462 bytes
コンパイル時間 865 ms
コンパイル使用メモリ 112,212 KB
実行使用メモリ 31,616 KB
最終ジャッジ日時 2024-06-10 16:48:56
合計ジャッジ時間 3,261 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
19,072 KB
testcase_01 AC 26 ms
18,944 KB
testcase_02 AC 27 ms
18,944 KB
testcase_03 AC 26 ms
19,072 KB
testcase_04 AC 26 ms
18,816 KB
testcase_05 AC 26 ms
19,200 KB
testcase_06 AC 26 ms
19,072 KB
testcase_07 AC 25 ms
19,072 KB
testcase_08 AC 55 ms
26,112 KB
testcase_09 AC 71 ms
31,616 KB
testcase_10 AC 63 ms
28,928 KB
testcase_11 AC 57 ms
26,752 KB
testcase_12 AC 43 ms
22,272 KB
testcase_13 AC 28 ms
19,200 KB
testcase_14 AC 26 ms
19,072 KB
testcase_15 AC 25 ms
19,072 KB
testcase_16 AC 26 ms
18,944 KB
testcase_17 AC 26 ms
19,072 KB
testcase_18 AC 54 ms
24,832 KB
testcase_19 AC 47 ms
23,040 KB
testcase_20 AC 42 ms
21,532 KB
testcase_21 AC 58 ms
25,216 KB
testcase_22 AC 44 ms
22,676 KB
testcase_23 AC 26 ms
18,944 KB
testcase_24 AC 64 ms
30,848 KB
testcase_25 AC 53 ms
23,556 KB
testcase_26 AC 35 ms
21,076 KB
testcase_27 AC 26 ms
18,944 KB
evil01.txt AC 73 ms
33,280 KB
evil02.txt AC 72 ms
33,536 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.Linq;
using System.Collections.Generic;

public class P0182 {
    public static void Main() {
        var n = int.Parse(Console.ReadLine().Trim());
        var dict = new Dictionary<int, int>();
        foreach(int a in Console.ReadLine().Trim().Split(' ').Select(int.Parse)) {
            dict[a] = dict.GetValueOrDefault(a) + 1;
        }
        Console.WriteLine(dict.AsEnumerable().Where(pair => pair.Value == 1).Count());
    }
}
0