結果

問題 No.1456 Range Xor
ユーザー あかりきあかりき
提出日時 2021-04-13 17:17:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 218 bytes
コンパイル時間 123 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 103,424 KB
最終ジャッジ日時 2024-06-29 22:19:29
合計ジャッジ時間 4,217 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,224 KB
testcase_01 AC 34 ms
52,352 KB
testcase_02 AC 32 ms
51,584 KB
testcase_03 AC 67 ms
93,312 KB
testcase_04 AC 65 ms
94,336 KB
testcase_05 AC 71 ms
101,632 KB
testcase_06 AC 63 ms
93,312 KB
testcase_07 AC 73 ms
103,424 KB
testcase_08 AC 69 ms
98,944 KB
testcase_09 AC 72 ms
93,952 KB
testcase_10 AC 66 ms
95,360 KB
testcase_11 AC 43 ms
68,352 KB
testcase_12 AC 40 ms
62,592 KB
testcase_13 AC 48 ms
73,600 KB
testcase_14 AC 45 ms
70,784 KB
testcase_15 AC 59 ms
87,168 KB
testcase_16 AC 60 ms
88,832 KB
testcase_17 AC 53 ms
79,104 KB
testcase_18 AC 45 ms
70,144 KB
testcase_19 AC 58 ms
84,972 KB
testcase_20 AC 62 ms
89,472 KB
testcase_21 AC 55 ms
82,048 KB
testcase_22 AC 55 ms
80,896 KB
testcase_23 AC 49 ms
74,368 KB
testcase_24 AC 41 ms
66,304 KB
testcase_25 AC 48 ms
71,680 KB
testcase_26 AC 58 ms
83,072 KB
testcase_27 AC 65 ms
86,784 KB
testcase_28 AC 46 ms
70,656 KB
testcase_29 AC 72 ms
101,504 KB
testcase_30 AC 66 ms
96,384 KB
testcase_31 AC 44 ms
69,120 KB
testcase_32 AC 43 ms
68,352 KB
testcase_33 AC 50 ms
75,648 KB
testcase_34 AC 68 ms
97,664 KB
testcase_35 AC 54 ms
79,872 KB
testcase_36 AC 66 ms
97,024 KB
testcase_37 AC 73 ms
101,120 KB
testcase_38 AC 43 ms
66,432 KB
testcase_39 AC 57 ms
85,120 KB
testcase_40 AC 64 ms
91,904 KB
testcase_41 AC 41 ms
59,904 KB
testcase_42 AC 42 ms
64,000 KB
testcase_43 AC 34 ms
51,968 KB
testcase_44 AC 33 ms
51,456 KB
testcase_45 AC 34 ms
51,584 KB
testcase_46 AC 33 ms
51,840 KB
testcase_47 AC 33 ms
51,968 KB
testcase_48 AC 33 ms
51,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
a=list(map(int,input().split()))

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

A2=set()
for i in range(len(A)):
  if A[i]^k in A2:
    print('Yes')
    exit()
  A2.add(A[i])
print('No')
0