結果

問題 No.182 新規性の虜
ユーザー phsplsphspls
提出日時 2020-03-27 23:52:29
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 91 ms / 5,000 ms
コード長 462 bytes
コンパイル時間 1,185 ms
コンパイル使用メモリ 117,036 KB
実行使用メモリ 39,728 KB
最終ジャッジ日時 2025-01-02 09:58:46
合計ジャッジ時間 4,513 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
25,932 KB
testcase_01 AC 35 ms
28,048 KB
testcase_02 AC 36 ms
25,936 KB
testcase_03 AC 40 ms
23,992 KB
testcase_04 AC 38 ms
28,176 KB
testcase_05 AC 37 ms
27,848 KB
testcase_06 AC 37 ms
25,876 KB
testcase_07 AC 38 ms
28,052 KB
testcase_08 AC 70 ms
32,784 KB
testcase_09 AC 91 ms
37,520 KB
testcase_10 AC 82 ms
34,640 KB
testcase_11 AC 75 ms
33,536 KB
testcase_12 AC 55 ms
28,284 KB
testcase_13 AC 37 ms
25,936 KB
testcase_14 AC 36 ms
27,848 KB
testcase_15 AC 36 ms
28,164 KB
testcase_16 AC 37 ms
28,304 KB
testcase_17 AC 36 ms
26,064 KB
testcase_18 AC 69 ms
31,216 KB
testcase_19 AC 60 ms
29,992 KB
testcase_20 AC 54 ms
27,208 KB
testcase_21 AC 73 ms
31,384 KB
testcase_22 AC 57 ms
28,468 KB
testcase_23 AC 36 ms
27,912 KB
testcase_24 AC 83 ms
39,728 KB
testcase_25 AC 69 ms
30,456 KB
testcase_26 AC 47 ms
27,460 KB
testcase_27 AC 36 ms
25,808 KB
evil01.txt AC 92 ms
38,392 KB
evil02.txt AC 93 ms
36,344 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