結果

問題 No.1456 Range Xor
ユーザー lie_of_lillielie_of_lillie
提出日時 2021-04-27 15:19:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 377 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 33,632 KB
最終ジャッジ日時 2024-07-06 11:11:21
合計ジャッジ時間 6,130 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 25 ms
10,880 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 123 ms
33,368 KB
testcase_04 AC 122 ms
33,632 KB
testcase_05 AC 132 ms
33,364 KB
testcase_06 AC 121 ms
33,464 KB
testcase_07 AC 120 ms
33,628 KB
testcase_08 AC 121 ms
33,500 KB
testcase_09 AC 124 ms
33,620 KB
testcase_10 AC 120 ms
33,368 KB
testcase_11 AC 41 ms
14,692 KB
testcase_12 AC 32 ms
12,800 KB
testcase_13 AC 54 ms
19,640 KB
testcase_14 AC 54 ms
19,560 KB
testcase_15 AC 106 ms
31,316 KB
testcase_16 AC 94 ms
24,580 KB
testcase_17 AC 67 ms
20,432 KB
testcase_18 AC 54 ms
19,488 KB
testcase_19 AC 81 ms
22,572 KB
testcase_20 AC 96 ms
24,272 KB
testcase_21 AC 79 ms
22,532 KB
testcase_22 AC 83 ms
22,832 KB
testcase_23 AC 57 ms
19,512 KB
testcase_24 AC 38 ms
13,440 KB
testcase_25 AC 52 ms
19,396 KB
testcase_26 AC 70 ms
21,148 KB
testcase_27 AC 91 ms
23,560 KB
testcase_28 AC 49 ms
18,368 KB
testcase_29 AC 115 ms
32,036 KB
testcase_30 AC 117 ms
32,724 KB
testcase_31 AC 47 ms
18,208 KB
testcase_32 AC 41 ms
14,464 KB
testcase_33 AC 60 ms
20,076 KB
testcase_34 AC 119 ms
32,948 KB
testcase_35 AC 72 ms
21,428 KB
testcase_36 AC 119 ms
33,112 KB
testcase_37 AC 109 ms
31,612 KB
testcase_38 AC 38 ms
13,824 KB
testcase_39 AC 89 ms
23,896 KB
testcase_40 AC 88 ms
23,676 KB
testcase_41 AC 27 ms
11,392 KB
testcase_42 AC 34 ms
13,184 KB
testcase_43 WA -
testcase_44 AC 25 ms
10,880 KB
testcase_45 AC 24 ms
10,624 KB
testcase_46 AC 25 ms
10,880 KB
testcase_47 WA -
testcase_48 AC 25 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import copy
N, K = map(int, input().split())

A = list(map(int, input().split()))

# X^X=0
# X^0=X

l0 = [0]*len(A)
l0[0] = A[0]
for i, a in enumerate(A):
    if i == 0:
        l0[0] ^= 0
        continue
    l0[i] = l0[i-1] ^ a

l1 = copy.copy(l0)
for i in range(len(l0)):
    l0[i] ^= K

# print(l0, l1)
if len(set(l0) & set(l1)) >= 1:
    print("Yes")
else:
    print("No")
0