結果

問題 No.182 新規性の虜
ユーザー mbanmban
提出日時 2016-11-05 14:51:51
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 1,064 ms / 5,000 ms
コード長 639 bytes
コンパイル時間 3,771 ms
コンパイル使用メモリ 105,604 KB
実行使用メモリ 38,888 KB
最終ジャッジ日時 2024-06-08 08:54:08
合計ジャッジ時間 11,304 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
24,120 KB
testcase_01 AC 32 ms
25,836 KB
testcase_02 AC 29 ms
25,828 KB
testcase_03 AC 29 ms
25,704 KB
testcase_04 AC 31 ms
26,092 KB
testcase_05 AC 29 ms
25,832 KB
testcase_06 AC 29 ms
26,216 KB
testcase_07 AC 29 ms
25,908 KB
testcase_08 AC 53 ms
31,976 KB
testcase_09 AC 69 ms
38,888 KB
testcase_10 AC 63 ms
35,376 KB
testcase_11 AC 56 ms
33,332 KB
testcase_12 AC 46 ms
28,900 KB
testcase_13 AC 32 ms
26,088 KB
testcase_14 AC 32 ms
25,852 KB
testcase_15 AC 29 ms
26,216 KB
testcase_16 AC 30 ms
25,780 KB
testcase_17 AC 29 ms
25,712 KB
testcase_18 AC 1,064 ms
29,868 KB
testcase_19 AC 1,013 ms
28,720 KB
testcase_20 AC 809 ms
27,496 KB
testcase_21 AC 1,054 ms
30,828 KB
testcase_22 AC 927 ms
28,216 KB
testcase_23 AC 27 ms
23,984 KB
testcase_24 AC 65 ms
36,656 KB
testcase_25 AC 53 ms
28,460 KB
testcase_26 AC 38 ms
27,204 KB
testcase_27 AC 29 ms
26,092 KB
evil01.txt AC 70 ms
40,272 KB
evil02.txt AC 70 ms
40,300 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