結果

問題 No.1456 Range Xor
ユーザー あかりきあかりき
提出日時 2021-04-13 17:03:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 204 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,080 KB
実行使用メモリ 106,708 KB
最終ジャッジ日時 2024-06-29 22:04:25
合計ジャッジ時間 5,272 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,840 KB
testcase_01 AC 35 ms
51,840 KB
testcase_02 AC 36 ms
51,968 KB
testcase_03 AC 81 ms
106,708 KB
testcase_04 AC 81 ms
105,932 KB
testcase_05 AC 85 ms
106,464 KB
testcase_06 AC 79 ms
106,176 KB
testcase_07 AC 80 ms
106,308 KB
testcase_08 AC 78 ms
106,548 KB
testcase_09 AC 83 ms
106,060 KB
testcase_10 AC 82 ms
106,524 KB
testcase_11 AC 47 ms
67,948 KB
testcase_12 AC 44 ms
62,332 KB
testcase_13 AC 54 ms
73,472 KB
testcase_14 AC 53 ms
73,856 KB
testcase_15 AC 77 ms
99,584 KB
testcase_16 AC 71 ms
96,060 KB
testcase_17 AC 61 ms
79,216 KB
testcase_18 AC 55 ms
72,960 KB
testcase_19 AC 68 ms
88,960 KB
testcase_20 AC 73 ms
96,480 KB
testcase_21 AC 65 ms
88,128 KB
testcase_22 AC 66 ms
88,832 KB
testcase_23 AC 53 ms
74,704 KB
testcase_24 AC 47 ms
66,176 KB
testcase_25 AC 52 ms
71,808 KB
testcase_26 AC 62 ms
82,560 KB
testcase_27 AC 69 ms
92,288 KB
testcase_28 AC 50 ms
70,020 KB
testcase_29 AC 81 ms
101,632 KB
testcase_30 AC 83 ms
105,396 KB
testcase_31 AC 49 ms
68,796 KB
testcase_32 AC 49 ms
68,352 KB
testcase_33 AC 56 ms
76,832 KB
testcase_34 AC 82 ms
105,216 KB
testcase_35 AC 62 ms
83,184 KB
testcase_36 AC 83 ms
106,240 KB
testcase_37 AC 82 ms
100,676 KB
testcase_38 AC 46 ms
66,364 KB
testcase_39 AC 69 ms
92,416 KB
testcase_40 AC 68 ms
92,736 KB
testcase_41 AC 41 ms
60,160 KB
testcase_42 AC 45 ms
63,928 KB
testcase_43 AC 37 ms
52,216 KB
testcase_44 AC 35 ms
51,584 KB
testcase_45 AC 36 ms
51,840 KB
testcase_46 AC 34 ms
51,712 KB
testcase_47 AC 34 ms
52,224 KB
testcase_48 AC 32 ms
51,712 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(A)
for i in range(len(A)):
  if A[i]^k in A2:
    print('Yes')
    exit()
print('No')
0