結果

問題 No.182 新規性の虜
ユーザー uma-pinehilluma-pinehill
提出日時 2018-05-22 16:31:51
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 160 ms / 5,000 ms
コード長 306 bytes
コンパイル時間 2,078 ms
コンパイル使用メモリ 101,036 KB
実行使用メモリ 47,612 KB
最終ジャッジ日時 2023-09-11 01:15:12
合計ジャッジ時間 6,097 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
21,644 KB
testcase_01 AC 61 ms
23,632 KB
testcase_02 AC 62 ms
23,636 KB
testcase_03 AC 63 ms
23,732 KB
testcase_04 AC 62 ms
21,536 KB
testcase_05 AC 61 ms
21,636 KB
testcase_06 AC 61 ms
21,532 KB
testcase_07 AC 61 ms
21,540 KB
testcase_08 AC 104 ms
34,476 KB
testcase_09 AC 138 ms
42,060 KB
testcase_10 AC 135 ms
41,416 KB
testcase_11 AC 108 ms
36,848 KB
testcase_12 AC 81 ms
27,952 KB
testcase_13 AC 60 ms
19,596 KB
testcase_14 AC 61 ms
21,560 KB
testcase_15 AC 60 ms
21,616 KB
testcase_16 AC 61 ms
21,620 KB
testcase_17 AC 61 ms
21,740 KB
testcase_18 AC 106 ms
34,972 KB
testcase_19 AC 97 ms
33,496 KB
testcase_20 AC 83 ms
25,088 KB
testcase_21 AC 110 ms
33,600 KB
testcase_22 AC 85 ms
25,704 KB
testcase_23 AC 61 ms
21,644 KB
testcase_24 AC 160 ms
47,612 KB
testcase_25 AC 89 ms
28,824 KB
testcase_26 AC 73 ms
22,916 KB
testcase_27 AC 61 ms
21,732 KB
evil01.txt AC 189 ms
48,560 KB
evil02.txt AC 190 ms
48,648 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;
public class Program
{
    static void Main()
    {
       Console.ReadLine();
       var Input = new List<string>(Console.ReadLine().Split(' ')).GroupBy(e => e).Where(e => e.Count() == 1);
       Console.WriteLine(Input.Count());
    }
}
0