結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー eSeFeSeF
提出日時 2020-06-08 00:53:02
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 32 ms / 5,000 ms
コード長 564 bytes
コンパイル時間 913 ms
コンパイル使用メモリ 112,840 KB
実行使用メモリ 27,496 KB
最終ジャッジ日時 2024-12-23 23:01:36
合計ジャッジ時間 2,460 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
24,784 KB
testcase_01 AC 24 ms
24,784 KB
testcase_02 AC 25 ms
24,912 KB
testcase_03 AC 26 ms
24,780 KB
testcase_04 AC 25 ms
22,840 KB
testcase_05 AC 25 ms
24,748 KB
testcase_06 AC 24 ms
26,768 KB
testcase_07 AC 32 ms
25,840 KB
testcase_08 AC 31 ms
25,676 KB
testcase_09 AC 31 ms
23,352 KB
testcase_10 AC 31 ms
25,388 KB
testcase_11 AC 31 ms
25,548 KB
testcase_12 AC 24 ms
24,628 KB
testcase_13 AC 25 ms
24,656 KB
testcase_14 AC 30 ms
25,400 KB
testcase_15 AC 31 ms
23,476 KB
testcase_16 AC 25 ms
26,956 KB
testcase_17 AC 28 ms
23,216 KB
testcase_18 AC 31 ms
27,496 KB
testcase_19 AC 29 ms
25,200 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.Linq;
using System.Collections.Generic;
class Solution
{
    static void Main(string[] args)
    {
        int N = int.Parse(Console.ReadLine());
        var A = Array.ConvertAll(Console.ReadLine().Split(), long.Parse);
        var bases = new List<long>();
        for(var i = 0; i < N; i++)
        {
            long v = A[i];
            foreach(var e in bases)
            {
                v = Math.Min(v, v ^ e);
            }
            if (v != 0) bases.Add(v);
        }
        Console.WriteLine(1L << bases.Count());
    }
}
0