結果

問題 No.1456 Range Xor
ユーザー hamigakiko0721hamigakiko0721
提出日時 2022-01-31 14:24:32
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 820 bytes
コンパイル時間 1,683 ms
コンパイル使用メモリ 167,704 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-06-11 08:48:51
合計ジャッジ時間 8,313 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,624 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 117 ms
5,376 KB
testcase_04 AC 302 ms
5,376 KB
testcase_05 AC 1,764 ms
5,376 KB
testcase_06 AC 123 ms
5,376 KB
testcase_07 TLE -
testcase_08 AC 1,193 ms
5,376 KB
testcase_09 AC 165 ms
5,376 KB
testcase_10 AC 472 ms
5,376 KB
testcase_11 AC 167 ms
5,376 KB
testcase_12 AC 34 ms
5,376 KB
testcase_13 AC 515 ms
5,376 KB
testcase_14 AC 96 ms
5,376 KB
testcase_15 AC 70 ms
5,376 KB
testcase_16 AC 567 ms
5,376 KB
testcase_17 AC 936 ms
5,376 KB
testcase_18 AC 35 ms
5,376 KB
testcase_19 AC 967 ms
5,376 KB
testcase_20 AC 745 ms
5,376 KB
testcase_21 AC 302 ms
5,376 KB
testcase_22 AC 91 ms
5,376 KB
testcase_23 AC 413 ms
5,376 KB
testcase_24 AC 107 ms
5,376 KB
testcase_25 AC 398 ms
5,376 KB
testcase_26 AC 1,186 ms
5,376 KB
testcase_27 AC 568 ms
5,376 KB
testcase_28 AC 320 ms
5,376 KB
testcase_29 TLE -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
権限があれば一括ダウンロードができます

ソースコード

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;
	//xorの累積和の作成
	vector<int> xor_sum(N+1,0);
	for(int i = 0; i < N; ++i){
		int A; cin >> A;
		xor_sum[i+1] = xor_sum[i] ^ A;
	}
	//全探索で探す
	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