結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー kotatsugamekotatsugame
提出日時 2017-01-09 01:27:58
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 184 ms / 5,000 ms
コード長 323 bytes
コンパイル時間 461 ms
コンパイル使用メモリ 64,900 KB
実行使用メモリ 144,576 KB
最終ジャッジ日時 2024-06-29 22:22:39
合計ジャッジ時間 2,433 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 184 ms
144,576 KB
testcase_08 AC 166 ms
116,400 KB
testcase_09 AC 102 ms
100,592 KB
testcase_10 AC 132 ms
113,092 KB
testcase_11 AC 178 ms
136,044 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 152 ms
107,828 KB
testcase_15 AC 183 ms
139,504 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 40 ms
39,160 KB
testcase_18 AC 165 ms
141,296 KB
testcase_19 AC 21 ms
20,672 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<<15];
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<<15;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<<15;j++)cnt+=dp[n][j];
	cout<<cnt<<endl;
}
0