結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー 抹茶アイス抹茶アイス
提出日時 2023-07-27 15:53:58
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 287 ms / 5,000 ms
コード長 659 bytes
コンパイル時間 9,554 ms
コンパイル使用メモリ 166,904 KB
実行使用メモリ 186,488 KB
最終ジャッジ日時 2024-10-04 12:59:20
合計ジャッジ時間 11,366 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
31,616 KB
testcase_01 AC 66 ms
31,728 KB
testcase_02 AC 65 ms
31,616 KB
testcase_03 AC 62 ms
31,744 KB
testcase_04 AC 62 ms
31,616 KB
testcase_05 AC 62 ms
31,616 KB
testcase_06 AC 65 ms
31,616 KB
testcase_07 AC 287 ms
32,380 KB
testcase_08 AC 222 ms
32,128 KB
testcase_09 AC 178 ms
32,128 KB
testcase_10 AC 194 ms
32,112 KB
testcase_11 AC 237 ms
32,384 KB
testcase_12 AC 69 ms
31,616 KB
testcase_13 AC 67 ms
31,740 KB
testcase_14 AC 68 ms
31,872 KB
testcase_15 AC 240 ms
32,376 KB
testcase_16 AC 66 ms
31,872 KB
testcase_17 AC 108 ms
31,872 KB
testcase_18 AC 254 ms
32,128 KB
testcase_19 AC 90 ms
186,488 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (95 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;

namespace yukicoder
{
	public class Program
	{
		public static void Main()
		{
			var n = int.Parse(Console.ReadLine());
			var a = Console.ReadLine().Trim().Split(' ').Select(value => int.Parse(value)).Distinct().ToArray();
			var m = 16384 * 2;
			var b = new bool[m];
			b[0] = true;
			for(var i = 0; i < a.Length; i++)
            {
                for (var j = 0; j < m; j++)
                {
                    if (b[j])
                    {
						b[j ^ a[i]] = true;
                    }
                }
            }
			Console.WriteLine(b.Count(value => value));
		}
    }
}
0