結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー kotatsugamekotatsugame
提出日時 2017-01-09 01:24:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 329 bytes
コンパイル時間 600 ms
コンパイル使用メモリ 63,512 KB
実行使用メモリ 83,328 KB
最終ジャッジ日時 2024-05-10 03:06:32
合計ジャッジ時間 2,422 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 WA -
testcase_08 AC 101 ms
74,624 KB
testcase_09 AC 71 ms
52,224 KB
testcase_10 AC 85 ms
62,208 KB
testcase_11 AC 109 ms
80,640 KB
testcase_12 WA -
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 84 ms
23,552 KB
testcase_15 AC 116 ms
83,328 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 27 ms
21,120 KB
testcase_18 WA -
testcase_19 AC 15 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:4:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    4 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
using namespace std;
bool dp[5001][(1<<14)+1];
main()
{
	int n;cin>>n;
	int a[5000];for(int i=0;i<n;i++)cin>>a[i];
	dp[0][0]=1;
	for(int i=0;i<n;i++)
	{
		for(int j=0;j<=1<<14;j++)
		{
			if(dp[i][j])dp[i+1][j^a[i]]=dp[i+1][j]=1;
		}
	}
	int cnt=0;
	for(int j=0;j<=1<<14;j++)cnt+=dp[n][j];
	cout<<cnt<<endl;
}
0