結果

問題 No.1456 Range Xor
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-03-31 21:09:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 276 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 97,460 KB
最終ジャッジ日時 2024-05-09 02:45:42
合計ジャッジ時間 4,538 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,024 KB
testcase_01 AC 37 ms
53,112 KB
testcase_02 AC 35 ms
52,192 KB
testcase_03 AC 61 ms
85,292 KB
testcase_04 AC 63 ms
88,140 KB
testcase_05 AC 73 ms
93,592 KB
testcase_06 AC 61 ms
85,696 KB
testcase_07 AC 74 ms
97,460 KB
testcase_08 AC 68 ms
91,836 KB
testcase_09 AC 61 ms
86,272 KB
testcase_10 AC 64 ms
88,020 KB
testcase_11 AC 45 ms
68,080 KB
testcase_12 AC 40 ms
62,948 KB
testcase_13 AC 50 ms
71,672 KB
testcase_14 AC 46 ms
68,852 KB
testcase_15 AC 58 ms
82,148 KB
testcase_16 AC 61 ms
83,716 KB
testcase_17 AC 55 ms
76,360 KB
testcase_18 AC 46 ms
67,420 KB
testcase_19 AC 58 ms
80,468 KB
testcase_20 AC 60 ms
83,496 KB
testcase_21 AC 56 ms
78,132 KB
testcase_22 AC 54 ms
76,436 KB
testcase_23 AC 49 ms
71,724 KB
testcase_24 AC 43 ms
65,356 KB
testcase_25 AC 49 ms
70,800 KB
testcase_26 AC 58 ms
79,308 KB
testcase_27 AC 61 ms
81,644 KB
testcase_28 AC 47 ms
68,668 KB
testcase_29 AC 74 ms
94,912 KB
testcase_30 AC 66 ms
88,964 KB
testcase_31 AC 47 ms
68,560 KB
testcase_32 AC 45 ms
67,832 KB
testcase_33 AC 51 ms
74,152 KB
testcase_34 AC 67 ms
91,680 KB
testcase_35 AC 55 ms
76,664 KB
testcase_36 AC 65 ms
89,900 KB
testcase_37 AC 74 ms
94,408 KB
testcase_38 AC 44 ms
64,916 KB
testcase_39 AC 57 ms
79,608 KB
testcase_40 AC 66 ms
86,548 KB
testcase_41 AC 40 ms
59,864 KB
testcase_42 AC 43 ms
64,224 KB
testcase_43 AC 34 ms
52,612 KB
testcase_44 AC 38 ms
53,104 KB
testcase_45 AC 36 ms
52,820 KB
testcase_46 AC 36 ms
53,180 KB
testcase_47 AC 35 ms
52,068 KB
testcase_48 AC 35 ms
52,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

"""

import sys
from sys import stdin

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

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

dic = {}
now = 0
dic[0] = 1


for i in range(N):

    now ^= A[i]

    if now ^ K in dic:
        print ("Yes")
        sys.exit()

    dic[now] = 1

print ("No")
0