結果

問題 No.182 新規性の虜
ユーザー nakamura0422nakamura0422
提出日時 2023-01-12 11:52:56
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 92 ms / 5,000 ms
コード長 469 bytes
コンパイル時間 12,257 ms
コンパイル使用メモリ 170,480 KB
実行使用メモリ 49,024 KB
最終ジャッジ日時 2024-06-02 09:27:41
合計ジャッジ時間 12,935 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
28,160 KB
testcase_01 AC 44 ms
28,032 KB
testcase_02 AC 44 ms
28,160 KB
testcase_03 AC 45 ms
28,396 KB
testcase_04 AC 46 ms
28,160 KB
testcase_05 AC 46 ms
28,156 KB
testcase_06 AC 49 ms
28,396 KB
testcase_07 AC 45 ms
28,416 KB
testcase_08 AC 69 ms
40,444 KB
testcase_09 AC 87 ms
48,256 KB
testcase_10 AC 87 ms
46,464 KB
testcase_11 AC 75 ms
43,008 KB
testcase_12 AC 57 ms
34,148 KB
testcase_13 AC 45 ms
28,288 KB
testcase_14 AC 46 ms
28,388 KB
testcase_15 AC 45 ms
28,264 KB
testcase_16 AC 45 ms
28,160 KB
testcase_17 AC 44 ms
28,416 KB
testcase_18 AC 66 ms
38,500 KB
testcase_19 AC 60 ms
35,200 KB
testcase_20 AC 53 ms
32,768 KB
testcase_21 AC 74 ms
39,424 KB
testcase_22 AC 58 ms
34,148 KB
testcase_23 AC 44 ms
27,904 KB
testcase_24 AC 92 ms
49,024 KB
testcase_25 AC 62 ms
35,968 KB
testcase_26 AC 50 ms
30,972 KB
testcase_27 AC 44 ms
28,136 KB
evil01.txt AC 96 ms
51,068 KB
evil02.txt AC 101 ms
206,496 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (85 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;

static class CaptiveOfNovelty
{
    static void Main()
    {
        var N = Console.ReadLine();
        var ans =  Console.ReadLine()
                            .Split(' ')
                            .GroupBy(x => x)
                            .Where(y => y.Count() == 1)
                            .SelectMany(z => z)
                            .Count();
        Console.WriteLine(ans);
    }
}
0