結果

問題 No.1456 Range Xor
ユーザー titiatitia
提出日時 2021-03-31 21:31:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 251 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 26,132 KB
最終ジャッジ日時 2024-05-09 05:36:49
合計ジャッジ時間 5,123 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 AC 32 ms
10,624 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 AC 100 ms
26,040 KB
testcase_04 AC 101 ms
26,044 KB
testcase_05 AC 99 ms
26,120 KB
testcase_06 AC 105 ms
26,132 KB
testcase_07 AC 99 ms
25,992 KB
testcase_08 AC 100 ms
26,020 KB
testcase_09 AC 105 ms
26,036 KB
testcase_10 AC 105 ms
26,024 KB
testcase_11 AC 45 ms
13,652 KB
testcase_12 AC 36 ms
12,160 KB
testcase_13 AC 59 ms
17,344 KB
testcase_14 AC 55 ms
17,484 KB
testcase_15 AC 86 ms
24,708 KB
testcase_16 AC 79 ms
19,948 KB
testcase_17 AC 68 ms
17,528 KB
testcase_18 AC 52 ms
17,236 KB
testcase_19 AC 79 ms
19,004 KB
testcase_20 AC 78 ms
19,720 KB
testcase_21 AC 69 ms
19,144 KB
testcase_22 AC 72 ms
19,032 KB
testcase_23 AC 52 ms
17,412 KB
testcase_24 AC 41 ms
12,928 KB
testcase_25 AC 55 ms
16,608 KB
testcase_26 AC 72 ms
18,400 KB
testcase_27 AC 76 ms
19,312 KB
testcase_28 AC 52 ms
16,160 KB
testcase_29 AC 116 ms
25,012 KB
testcase_30 AC 98 ms
25,544 KB
testcase_31 AC 51 ms
16,236 KB
testcase_32 AC 46 ms
13,824 KB
testcase_33 AC 55 ms
17,536 KB
testcase_34 AC 101 ms
25,664 KB
testcase_35 AC 66 ms
18,820 KB
testcase_36 AC 99 ms
25,852 KB
testcase_37 AC 114 ms
24,792 KB
testcase_38 AC 42 ms
13,184 KB
testcase_39 AC 77 ms
19,572 KB
testcase_40 AC 86 ms
19,372 KB
testcase_41 AC 31 ms
10,880 KB
testcase_42 AC 36 ms
12,416 KB
testcase_43 WA -
testcase_44 AC 29 ms
10,496 KB
testcase_45 AC 28 ms
10,496 KB
testcase_46 AC 28 ms
10,624 KB
testcase_47 WA -
testcase_48 AC 28 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

X=[0]
for a in A:
    X.append(X[-1]^a)

Y=set(X[1:])

for y in Y:
    k=K^y
    if k in Y:
        print("Yes")
        break
else:
    print("No")
0