結果

問題 No.1456 Range Xor
ユーザー hamigakiko0721hamigakiko0721
提出日時 2022-01-31 14:22:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,907 ms / 2,000 ms
コード長 864 bytes
コンパイル時間 1,961 ms
コンパイル使用メモリ 168,332 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-11 08:48:30
合計ジャッジ時間 17,420 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 73 ms
5,376 KB
testcase_04 AC 157 ms
5,376 KB
testcase_05 AC 809 ms
5,376 KB
testcase_06 AC 80 ms
5,376 KB
testcase_07 AC 1,270 ms
5,376 KB
testcase_08 AC 571 ms
5,376 KB
testcase_09 AC 97 ms
5,376 KB
testcase_10 AC 236 ms
5,376 KB
testcase_11 AC 80 ms
5,376 KB
testcase_12 AC 18 ms
5,376 KB
testcase_13 AC 238 ms
5,376 KB
testcase_14 AC 58 ms
5,376 KB
testcase_15 AC 48 ms
5,376 KB
testcase_16 AC 274 ms
5,376 KB
testcase_17 AC 440 ms
5,376 KB
testcase_18 AC 26 ms
5,376 KB
testcase_19 AC 454 ms
5,376 KB
testcase_20 AC 357 ms
5,376 KB
testcase_21 AC 151 ms
5,376 KB
testcase_22 AC 55 ms
5,376 KB
testcase_23 AC 205 ms
5,376 KB
testcase_24 AC 57 ms
5,376 KB
testcase_25 AC 188 ms
5,376 KB
testcase_26 AC 538 ms
5,376 KB
testcase_27 AC 272 ms
5,376 KB
testcase_28 AC 140 ms
5,376 KB
testcase_29 AC 1,907 ms
5,376 KB
testcase_30 AC 340 ms
5,376 KB
testcase_31 AC 117 ms
5,376 KB
testcase_32 AC 87 ms
5,376 KB
testcase_33 AC 184 ms
5,376 KB
testcase_34 AC 640 ms
5,376 KB
testcase_35 AC 296 ms
5,376 KB
testcase_36 AC 360 ms
5,376 KB
testcase_37 AC 1,718 ms
5,376 KB
testcase_38 AC 61 ms
5,376 KB
testcase_39 AC 115 ms
5,376 KB
testcase_40 AC 868 ms
5,376 KB
testcase_41 AC 3 ms
5,376 KB
testcase_42 AC 29 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 2 ms
5,376 KB
testcase_45 AC 2 ms
5,376 KB
testcase_46 AC 2 ms
5,376 KB
testcase_47 AC 1 ms
5,376 KB
testcase_48 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<iostream>
using namespace std;
using LL = long long;
using P = pair<int,int>;
using Graph = vector<vector<int>>;
const int INF = 1 << 29;
const long long LINF = 1LL << 60;
#define all(x) (x).begin(), (x).end()
#define rep(i,n) for(int i = 0; i < (n); ++i)
template<class T>void chmin(T&a, T b){if(a > b) a = b;}
template<class T>void chmax(T&a, T b){if(a < b) a = b;}


int main(){
	//データの入力
	int N, K; cin >> N >> K;
	vector<int> A(N);
	for(int i = 0; i < N; ++i) cin >> A[i];
	//xorの累積和の作成
	vector<int> xor_sum(N+1,0);
	for(int i = 0; i < N; ++i){
		xor_sum[i+1] = xor_sum[i] ^ A[i];
	}
	//全探索で探す
	for(int i = 1; i <= N; ++i){
		for(int j = 0; j < i; ++j){
			int tmp = xor_sum[i] ^ xor_sum[j];
			if(tmp == K){
				cout << "Yes" << endl;
				return 0;
			}
		}
	}
	cout << "No" << endl;
}

0