結果

問題 No.1456 Range Xor
ユーザー DrDrpilotDrDrpilot
提出日時 2022-03-16 15:52:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 203 bytes
コンパイル時間 117 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 24,948 KB
最終ジャッジ日時 2024-09-24 16:07:31
合計ジャッジ時間 5,647 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 26 ms
10,880 KB
testcase_03 AC 102 ms
24,176 KB
testcase_04 AC 105 ms
24,932 KB
testcase_05 AC 102 ms
24,936 KB
testcase_06 AC 103 ms
24,180 KB
testcase_07 AC 100 ms
24,948 KB
testcase_08 AC 98 ms
24,292 KB
testcase_09 AC 106 ms
24,288 KB
testcase_10 AC 102 ms
24,288 KB
testcase_11 AC 43 ms
13,408 KB
testcase_12 AC 35 ms
12,160 KB
testcase_13 AC 55 ms
17,048 KB
testcase_14 AC 51 ms
17,028 KB
testcase_15 AC 89 ms
23,480 KB
testcase_16 AC 82 ms
19,136 KB
testcase_17 AC 68 ms
17,088 KB
testcase_18 AC 54 ms
16,944 KB
testcase_19 AC 77 ms
18,468 KB
testcase_20 AC 82 ms
19,144 KB
testcase_21 AC 70 ms
18,576 KB
testcase_22 AC 71 ms
18,596 KB
testcase_23 AC 53 ms
17,112 KB
testcase_24 AC 38 ms
12,928 KB
testcase_25 AC 52 ms
16,136 KB
testcase_26 AC 67 ms
17,516 KB
testcase_27 AC 77 ms
18,692 KB
testcase_28 AC 50 ms
15,884 KB
testcase_29 AC 112 ms
23,464 KB
testcase_30 AC 96 ms
23,772 KB
testcase_31 AC 48 ms
15,832 KB
testcase_32 AC 42 ms
13,696 KB
testcase_33 AC 55 ms
16,864 KB
testcase_34 AC 97 ms
23,684 KB
testcase_35 AC 64 ms
18,088 KB
testcase_36 AC 99 ms
23,932 KB
testcase_37 AC 104 ms
23,516 KB
testcase_38 AC 39 ms
12,928 KB
testcase_39 AC 75 ms
19,068 KB
testcase_40 AC 81 ms
18,812 KB
testcase_41 AC 29 ms
11,008 KB
testcase_42 AC 37 ms
12,416 KB
testcase_43 WA -
testcase_44 AC 27 ms
10,624 KB
testcase_45 AC 28 ms
10,624 KB
testcase_46 AC 26 ms
10,624 KB
testcase_47 WA -
testcase_48 AC 27 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
a=list(map(int,input().split()))
s=set()
now=0
for i in range(n):
    now=now^a[i]
    s.add(now)
for i in s:
    if i^k in s:
        print('Yes')
        exit()
print('No')
0