結果

問題 No.1456 Range Xor
ユーザー lie_of_lillielie_of_lillie
提出日時 2021-04-27 15:24:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 309 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 33,616 KB
最終ジャッジ日時 2024-07-06 11:17:31
合計ジャッジ時間 5,427 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,880 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 26 ms
10,880 KB
testcase_03 AC 125 ms
33,344 KB
testcase_04 AC 119 ms
33,328 KB
testcase_05 AC 120 ms
33,400 KB
testcase_06 AC 123 ms
33,264 KB
testcase_07 AC 123 ms
33,616 KB
testcase_08 AC 126 ms
33,340 KB
testcase_09 AC 129 ms
33,460 KB
testcase_10 AC 126 ms
33,612 KB
testcase_11 AC 44 ms
14,432 KB
testcase_12 AC 34 ms
12,800 KB
testcase_13 AC 54 ms
19,680 KB
testcase_14 AC 55 ms
19,480 KB
testcase_15 AC 106 ms
31,132 KB
testcase_16 AC 95 ms
24,296 KB
testcase_17 AC 68 ms
20,548 KB
testcase_18 AC 55 ms
19,600 KB
testcase_19 AC 84 ms
22,436 KB
testcase_20 AC 96 ms
24,208 KB
testcase_21 AC 81 ms
22,540 KB
testcase_22 AC 86 ms
22,844 KB
testcase_23 AC 57 ms
19,760 KB
testcase_24 AC 39 ms
13,440 KB
testcase_25 AC 55 ms
19,508 KB
testcase_26 AC 69 ms
21,136 KB
testcase_27 AC 86 ms
23,552 KB
testcase_28 AC 50 ms
18,236 KB
testcase_29 AC 115 ms
32,176 KB
testcase_30 AC 129 ms
32,724 KB
testcase_31 AC 51 ms
18,160 KB
testcase_32 AC 45 ms
14,592 KB
testcase_33 AC 65 ms
20,196 KB
testcase_34 AC 115 ms
32,596 KB
testcase_35 AC 71 ms
21,712 KB
testcase_36 AC 117 ms
33,284 KB
testcase_37 AC 115 ms
31,480 KB
testcase_38 AC 42 ms
13,824 KB
testcase_39 AC 94 ms
23,800 KB
testcase_40 AC 96 ms
23,756 KB
testcase_41 AC 30 ms
11,264 KB
testcase_42 AC 38 ms
13,184 KB
testcase_43 AC 28 ms
10,880 KB
testcase_44 AC 26 ms
10,752 KB
testcase_45 AC 27 ms
10,752 KB
testcase_46 AC 28 ms
10,880 KB
testcase_47 AC 27 ms
10,752 KB
testcase_48 AC 28 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

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

l0 = [0]
for i in range(len(A)):
    l0.append(l0[-1] ^ A[i])

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