結果

問題 No.182 新規性の虜
ユーザー mbanmban
提出日時 2016-11-05 14:51:51
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 1,077 ms / 5,000 ms
コード長 639 bytes
コンパイル時間 2,767 ms
コンパイル使用メモリ 103,808 KB
実行使用メモリ 34,176 KB
最終ジャッジ日時 2024-12-27 09:45:15
合計ジャッジ時間 10,518 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
19,584 KB
testcase_01 AC 27 ms
19,840 KB
testcase_02 AC 28 ms
19,456 KB
testcase_03 AC 28 ms
19,456 KB
testcase_04 AC 25 ms
19,584 KB
testcase_05 AC 28 ms
19,712 KB
testcase_06 AC 28 ms
19,712 KB
testcase_07 AC 26 ms
19,584 KB
testcase_08 AC 53 ms
27,904 KB
testcase_09 AC 69 ms
34,176 KB
testcase_10 AC 64 ms
31,232 KB
testcase_11 AC 57 ms
28,928 KB
testcase_12 AC 45 ms
23,808 KB
testcase_13 AC 29 ms
19,712 KB
testcase_14 AC 33 ms
19,456 KB
testcase_15 AC 26 ms
19,584 KB
testcase_16 AC 28 ms
19,456 KB
testcase_17 AC 31 ms
19,584 KB
testcase_18 AC 1,058 ms
25,728 KB
testcase_19 AC 1,066 ms
23,680 KB
testcase_20 AC 820 ms
22,272 KB
testcase_21 AC 1,077 ms
26,368 KB
testcase_22 AC 925 ms
23,204 KB
testcase_23 AC 29 ms
19,712 KB
testcase_24 AC 64 ms
33,536 KB
testcase_25 AC 52 ms
24,704 KB
testcase_26 AC 35 ms
21,376 KB
testcase_27 AC 28 ms
19,712 KB
evil01.txt AC 72 ms
36,480 KB
evil02.txt AC 73 ms
35,968 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;
using System.Threading.Tasks;

class Magatro
{
    static void Main()
    {
        int ans = 0;
        int N = int.Parse(Console.ReadLine());
        string[] q = Console.ReadLine().Split(' ');
        HashSet<string> H = new HashSet<string>();
        List<string> L = new List<string>();
        for(int i = 0; i < N; i++)
        {
            if (H.Add(q[i]))
            {
                L.Add(q[i]);
            }
            else
            {
                L.Remove(q[i]);
            }
        }
        Console.WriteLine(L.Count);
    }
}
0