結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー yuma220284yuma220284
提出日時 2019-08-10 11:47:43
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 203 ms / 5,000 ms
コード長 444 bytes
コンパイル時間 2,148 ms
コンパイル使用メモリ 159,004 KB
実行使用メモリ 153,380 KB
最終ジャッジ日時 2024-07-02 15:50:18
合計ジャッジ時間 3,601 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 168 ms
144,512 KB
testcase_08 AC 177 ms
142,256 KB
testcase_09 AC 119 ms
100,860 KB
testcase_10 AC 143 ms
120,960 KB
testcase_11 AC 188 ms
149,724 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 203 ms
139,968 KB
testcase_15 AC 200 ms
153,380 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 43 ms
38,712 KB
testcase_18 AC 161 ms
141,376 KB
testcase_19 AC 23 ms
20,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;

int main() {
	static int N, A[5000], COUNT = 0;
	static bool DP[5010][32768] = {};
	DP[0][0] = true;
	cin >> N;
	for (int i = 0; i < N; i++) cin >> A[i];
	for (int i = 0; i < N; i++) {
		for (int j = 0; j < 32768; j++) {
			if (DP[i][j]) {
				DP[i + 1][j ^ A[i]] = true;
				DP[i + 1][j] = true;
			}
		}
	}
	for (int i = 0; i < 32768; i++) {
		if (DP[N][i]) COUNT++;
	}
	cout << COUNT << endl;
}
0