結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー りあんりあん
提出日時 2015-04-19 02:39:10
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 561 ms / 5,000 ms
コード長 2,283 bytes
コンパイル時間 855 ms
コンパイル使用メモリ 112,888 KB
実行使用メモリ 61,328 KB
最終ジャッジ日時 2024-07-04 11:39:52
合計ジャッジ時間 11,737 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
26,160 KB
testcase_01 AC 31 ms
28,488 KB
testcase_02 AC 28 ms
26,132 KB
testcase_03 AC 28 ms
26,028 KB
testcase_04 AC 29 ms
26,160 KB
testcase_05 AC 28 ms
26,012 KB
testcase_06 AC 29 ms
26,396 KB
testcase_07 AC 31 ms
28,176 KB
testcase_08 AC 370 ms
54,440 KB
testcase_09 AC 105 ms
47,940 KB
testcase_10 AC 303 ms
50,652 KB
testcase_11 AC 245 ms
47,636 KB
testcase_12 AC 483 ms
61,328 KB
testcase_13 AC 514 ms
55,256 KB
testcase_14 AC 285 ms
49,496 KB
testcase_15 AC 545 ms
55,716 KB
testcase_16 AC 496 ms
53,640 KB
testcase_17 AC 511 ms
56,460 KB
testcase_18 AC 31 ms
26,268 KB
testcase_19 AC 32 ms
26,144 KB
testcase_20 AC 60 ms
32,892 KB
testcase_21 AC 550 ms
55,228 KB
testcase_22 AC 541 ms
54,680 KB
testcase_23 AC 32 ms
26,524 KB
testcase_24 AC 30 ms
26,392 KB
testcase_25 AC 31 ms
26,268 KB
testcase_26 AC 30 ms
24,372 KB
testcase_27 AC 31 ms
28,236 KB
testcase_28 AC 335 ms
51,580 KB
testcase_29 AC 489 ms
56,316 KB
testcase_30 AC 364 ms
51,988 KB
testcase_31 AC 308 ms
51,872 KB
testcase_32 AC 439 ms
53,644 KB
testcase_33 AC 534 ms
55,824 KB
testcase_34 AC 557 ms
57,828 KB
testcase_35 AC 561 ms
54,040 KB
testcase_36 AC 541 ms
55,488 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.IO;
using System.Text;

namespace Solver
{
    class Program
    {
        const int M = 1000000007;
        static void Main()
        {
            var sw = new System.IO.StreamWriter(Console.OpenStandardOutput()) { AutoFlush = false };
            Scan sc = new Scan();
            int n = sc.Int();
            long[] a = sc.LongArray();
            var set = new HashSet<long>();
            foreach (long i in a)
                set.Add(i);

            for (int t = 0; t < 100; ++t)
                set = loop(set, t);

            sw.WriteLine((long)1 << set.Count);
            sw.Flush();
        }
        public static HashSet<long> loop (HashSet<long> set, int t)
        {
            var ret = new HashSet<long>();
            long p = set.ElementAt(t % set.Count());

            foreach (long i in set)
            {
                if (i == p)
                    ret.Add(i);
                else
                    ret.Add(Math.Min(i, p ^ i));
            }
            return ret;
        }
    }

    class Scan
    {
        public int Int()
        {
            return int.Parse(Console.ReadLine().Trim());
        }
        public long Long()
        {
            return long.Parse(Console.ReadLine().Trim());
        }
        public string Str()
        {
            return Console.ReadLine().Trim();
        }

        public int[] IntArray()
        {
            return Console.ReadLine().Trim().Split().Select(int.Parse).ToArray();
        }
        public void IntTwi(out int a, out int b)
        {
            int[] arr = IntArray();
            a = arr[0];
            b = arr[1];
        }
        public void LongTwi(out long a, out long b)
        {
            long[] arr = LongArray();
            a = arr[0];
            b = arr[1];
        }
        public void StrTwi(out string a, out string b)
        {
            string[] arr = StrArray();
            a = arr[0];
            b = arr[1];
        }

        public long[] LongArray()
        {
            return Console.ReadLine().Trim().Split().Select(long.Parse).ToArray();
        }
        public string[] StrArray()
        {
            return Console.ReadLine().Trim().Split();
        }
    }
}
0