結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー りあんりあん
提出日時 2015-04-19 01:08:08
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 575 ms / 5,000 ms
コード長 2,203 bytes
コンパイル時間 1,136 ms
コンパイル使用メモリ 107,392 KB
実行使用メモリ 58,900 KB
最終ジャッジ日時 2024-07-04 11:08:20
合計ジャッジ時間 12,456 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
20,480 KB
testcase_01 AC 33 ms
20,608 KB
testcase_02 AC 34 ms
20,864 KB
testcase_03 AC 34 ms
20,608 KB
testcase_04 AC 33 ms
20,608 KB
testcase_05 AC 34 ms
20,608 KB
testcase_06 AC 33 ms
20,224 KB
testcase_07 AC 35 ms
20,352 KB
testcase_08 AC 419 ms
52,992 KB
testcase_09 AC 107 ms
28,032 KB
testcase_10 AC 321 ms
50,816 KB
testcase_11 AC 234 ms
41,600 KB
testcase_12 AC 472 ms
51,252 KB
testcase_13 AC 505 ms
53,644 KB
testcase_14 AC 306 ms
50,560 KB
testcase_15 AC 551 ms
57,840 KB
testcase_16 AC 463 ms
50,308 KB
testcase_17 AC 499 ms
53,816 KB
testcase_18 AC 35 ms
20,864 KB
testcase_19 AC 32 ms
20,352 KB
testcase_20 AC 61 ms
25,984 KB
testcase_21 AC 572 ms
58,900 KB
testcase_22 AC 575 ms
58,764 KB
testcase_23 AC 34 ms
20,736 KB
testcase_24 AC 34 ms
20,736 KB
testcase_25 AC 34 ms
20,736 KB
testcase_26 AC 34 ms
20,352 KB
testcase_27 AC 34 ms
20,864 KB
testcase_28 AC 341 ms
51,584 KB
testcase_29 AC 455 ms
50,304 KB
testcase_30 AC 391 ms
48,896 KB
testcase_31 AC 333 ms
52,096 KB
testcase_32 AC 421 ms
49,664 KB
testcase_33 AC 552 ms
57,972 KB
testcase_34 AC 555 ms
57,948 KB
testcase_35 AC 560 ms
58,624 KB
testcase_36 AC 562 ms
58,512 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 SortedSet<long>();
            foreach (long i in a)
                set.Add(i);

            for (int t = 0; t < 70; ++t)
            {
                long pre = 0;
                var l = new SortedSet<long>();
                foreach (long i in set)
                {
                    l.Add(Math.Min(i, pre ^ i));
                    pre = i;
                }
                set.Clear();
                foreach (long i in l)
                    set.Add(i);
            }

            sw.WriteLine((long)1 << set.Count);
            sw.Flush();
        }
    }

    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