結果

問題 No.182 新規性の虜
ユーザー _matumo__matumo_
提出日時 2018-08-07 18:38:28
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 444 bytes
コンパイル時間 831 ms
コンパイル使用メモリ 109,768 KB
実行使用メモリ 47,960 KB
最終ジャッジ日時 2023-10-19 22:29:24
合計ジャッジ時間 3,883 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
25,500 KB
testcase_01 AC 33 ms
25,500 KB
testcase_02 AC 33 ms
25,476 KB
testcase_03 AC 32 ms
25,480 KB
testcase_04 AC 32 ms
25,480 KB
testcase_05 AC 32 ms
25,480 KB
testcase_06 AC 32 ms
25,480 KB
testcase_07 AC 33 ms
25,480 KB
testcase_08 AC 84 ms
37,412 KB
testcase_09 AC 126 ms
44,820 KB
testcase_10 AC 121 ms
44,300 KB
testcase_11 AC 86 ms
37,776 KB
testcase_12 AC 54 ms
29,952 KB
testcase_13 AC 33 ms
25,500 KB
testcase_14 AC 33 ms
25,500 KB
testcase_15 AC 32 ms
25,476 KB
testcase_16 AC 33 ms
25,500 KB
testcase_17 AC 33 ms
25,500 KB
testcase_18 AC 78 ms
35,796 KB
testcase_19 AC 62 ms
29,516 KB
testcase_20 AC 53 ms
28,840 KB
testcase_21 AC 84 ms
36,368 KB
testcase_22 AC 57 ms
29,860 KB
testcase_23 AC 32 ms
25,476 KB
testcase_24 AC 106 ms
47,960 KB
testcase_25 AC 64 ms
30,524 KB
testcase_26 AC 43 ms
26,816 KB
testcase_27 AC 32 ms
25,476 KB
evil01.txt AC 148 ms
50,764 KB
evil02.txt AC 140 ms
51,056 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;
using System.Text;

namespace YukiCoder
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.ReadLine();
            var va = Console.ReadLine().Split().Select(int.Parse);
            int nn = va.GroupBy(n => n).Where(g => g.Count() == 1).Count();
            Console.WriteLine(nn);
            //Console.ReadLine();
        }
    }
}
0