結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー k3079kk3079k
提出日時 2019-09-15 15:08:51
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 770 ms / 5,000 ms
コード長 892 bytes
コンパイル時間 3,497 ms
コンパイル使用メモリ 108,256 KB
実行使用メモリ 26,184 KB
最終ジャッジ日時 2024-07-02 17:20:50
合計ジャッジ時間 10,563 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
23,912 KB
testcase_01 AC 27 ms
25,912 KB
testcase_02 AC 28 ms
23,608 KB
testcase_03 AC 28 ms
25,912 KB
testcase_04 AC 26 ms
23,780 KB
testcase_05 AC 28 ms
24,036 KB
testcase_06 AC 26 ms
23,648 KB
testcase_07 AC 681 ms
24,572 KB
testcase_08 AC 687 ms
24,500 KB
testcase_09 AC 479 ms
22,328 KB
testcase_10 AC 573 ms
24,676 KB
testcase_11 AC 738 ms
24,880 KB
testcase_12 AC 28 ms
23,888 KB
testcase_13 AC 26 ms
24,008 KB
testcase_14 AC 770 ms
24,796 KB
testcase_15 AC 770 ms
24,752 KB
testcase_16 AC 28 ms
24,160 KB
testcase_17 AC 193 ms
24,436 KB
testcase_18 AC 665 ms
24,236 KB
testcase_19 AC 110 ms
26,184 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;

namespace Test01
{
    class Program
    {
        
        static void Main(string[] args)
        {
            int N = int.Parse(Console.ReadLine());
            string[] input = Console.ReadLine().Split(' ');

            int[] a = new int[N + 1];
            for (int i = 1; i <= N; i++) a[i] = int.Parse(input[i - 1]);

            int max = 32767;
            bool[] dp = new bool[max + 1];
            dp[0] = true;
            for(int i = 1; i <= N; i++)
            {
                for(int j = 0; j <= max; j++)
                {
                    if ((j ^ a[i]) <= max) dp[j ^ a[i]] |= dp[j];
                }
            }

            int cnt = 0;
            for(int j = 0; j <= max; j++)
            {
                if (dp[j]) cnt++;
            }
            Console.WriteLine(cnt);
        }
    }
}
0