結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー snrnsidysnrnsidy
提出日時 2021-05-27 02:03:25
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 245 ms / 5,000 ms
コード長 585 bytes
コンパイル時間 2,566 ms
コンパイル使用メモリ 212,452 KB
実行使用メモリ 163,584 KB
最終ジャッジ日時 2024-10-15 19:48:25
合計ジャッジ時間 5,666 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
163,432 KB
testcase_01 AC 43 ms
163,328 KB
testcase_02 AC 43 ms
163,584 KB
testcase_03 AC 43 ms
163,328 KB
testcase_04 AC 42 ms
163,324 KB
testcase_05 AC 42 ms
163,328 KB
testcase_06 AC 42 ms
163,300 KB
testcase_07 AC 232 ms
163,456 KB
testcase_08 AC 221 ms
163,456 KB
testcase_09 AC 167 ms
163,380 KB
testcase_10 AC 191 ms
163,456 KB
testcase_11 AC 238 ms
163,448 KB
testcase_12 AC 44 ms
163,412 KB
testcase_13 AC 43 ms
163,456 KB
testcase_14 AC 231 ms
163,460 KB
testcase_15 AC 245 ms
163,428 KB
testcase_16 AC 42 ms
163,328 KB
testcase_17 AC 87 ms
163,488 KB
testcase_18 AC 223 ms
163,456 KB
testcase_19 AC 65 ms
163,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("O3")
#include <bits/stdc++.h>
 
using namespace std;

bool dp[5001][32768];

int main(void)
{
	cin.tie(0);
	ios::sync_with_stdio(false);

	int n,t;
	vector <int> v;

	cin >> n;

	for(int i=0;i<n;i++)
	{
		cin >> t;
		v.push_back(t);
	}

	memset(dp,false,sizeof(dp));

	dp[0][0] = true;

	for(int i=0;i<n;i++)
	{
		for(int j=0;j<32768;j++)
		{
			if(dp[i][j]==false)
			{
				continue;
			}
			dp[i+1][j] = true;
			dp[i+1][j^v[i]] = true;
		}
	}

	int res = 0;

	for(int i=0;i<32768;i++)
	{
		if(dp[n][i])
		{
			res++;
		}
	}

	cout << res << '\n';

	return 0;
}
0