結果

問題 No.1456 Range Xor
ユーザー pluto77pluto77
提出日時 2021-06-25 15:02:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 196 bytes
コンパイル時間 127 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 25,544 KB
最終ジャッジ日時 2024-06-25 07:41:13
合計ジャッジ時間 6,081 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 32 ms
10,624 KB
testcase_02 AC 33 ms
10,624 KB
testcase_03 AC 112 ms
25,360 KB
testcase_04 AC 105 ms
25,472 KB
testcase_05 AC 109 ms
25,248 KB
testcase_06 AC 107 ms
25,436 KB
testcase_07 AC 120 ms
25,348 KB
testcase_08 AC 113 ms
25,544 KB
testcase_09 AC 109 ms
25,412 KB
testcase_10 AC 106 ms
25,408 KB
testcase_11 AC 45 ms
13,656 KB
testcase_12 AC 37 ms
12,288 KB
testcase_13 AC 60 ms
17,296 KB
testcase_14 AC 56 ms
17,024 KB
testcase_15 AC 96 ms
24,228 KB
testcase_16 AC 85 ms
19,440 KB
testcase_17 AC 69 ms
17,340 KB
testcase_18 AC 54 ms
17,232 KB
testcase_19 AC 76 ms
18,712 KB
testcase_20 AC 84 ms
19,264 KB
testcase_21 AC 74 ms
18,688 KB
testcase_22 AC 77 ms
18,616 KB
testcase_23 AC 59 ms
17,276 KB
testcase_24 AC 42 ms
12,928 KB
testcase_25 AC 56 ms
16,636 KB
testcase_26 AC 75 ms
18,136 KB
testcase_27 AC 80 ms
18,816 KB
testcase_28 AC 53 ms
16,028 KB
testcase_29 AC 118 ms
24,544 KB
testcase_30 AC 103 ms
24,976 KB
testcase_31 AC 51 ms
16,080 KB
testcase_32 AC 47 ms
13,696 KB
testcase_33 AC 62 ms
17,276 KB
testcase_34 AC 104 ms
25,052 KB
testcase_35 AC 70 ms
18,852 KB
testcase_36 AC 109 ms
25,192 KB
testcase_37 AC 118 ms
24,196 KB
testcase_38 AC 44 ms
12,928 KB
testcase_39 AC 84 ms
19,064 KB
testcase_40 AC 92 ms
19,012 KB
testcase_41 AC 32 ms
11,008 KB
testcase_42 AC 39 ms
12,672 KB
testcase_43 AC 30 ms
10,624 KB
testcase_44 AC 30 ms
10,624 KB
testcase_45 AC 30 ms
10,624 KB
testcase_46 AC 30 ms
10,752 KB
testcase_47 AC 30 ms
10,752 KB
testcase_48 AC 30 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki1456
n,k=map(int,input().split())
a=list(map(int,input().split()))
x=[0]
for i in range(n):
 x.append(x[-1]^a[i])
s=set(x)
for i in x:
 if k^i in s:
  print('Yes')
  break
else:
 print('No')
0