結果

問題 No.1456 Range Xor
ユーザー kikagekikage
提出日時 2021-08-11 18:36:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 217 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 26,236 KB
最終ジャッジ日時 2024-09-25 05:03:07
合計ジャッジ時間 5,660 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 AC 132 ms
26,236 KB
testcase_04 AC 124 ms
26,092 KB
testcase_05 AC 129 ms
26,120 KB
testcase_06 AC 125 ms
26,012 KB
testcase_07 AC 128 ms
26,076 KB
testcase_08 AC 132 ms
26,016 KB
testcase_09 AC 125 ms
26,180 KB
testcase_10 AC 124 ms
26,124 KB
testcase_11 AC 45 ms
13,664 KB
testcase_12 AC 36 ms
12,160 KB
testcase_13 AC 59 ms
17,308 KB
testcase_14 AC 59 ms
17,284 KB
testcase_15 AC 108 ms
24,712 KB
testcase_16 AC 96 ms
19,952 KB
testcase_17 AC 68 ms
17,604 KB
testcase_18 AC 57 ms
17,360 KB
testcase_19 AC 85 ms
18,976 KB
testcase_20 AC 98 ms
19,788 KB
testcase_21 AC 83 ms
19,184 KB
testcase_22 AC 86 ms
19,016 KB
testcase_23 AC 62 ms
17,368 KB
testcase_24 AC 42 ms
12,928 KB
testcase_25 AC 55 ms
16,904 KB
testcase_26 AC 74 ms
18,400 KB
testcase_27 AC 93 ms
19,332 KB
testcase_28 AC 52 ms
16,156 KB
testcase_29 AC 115 ms
24,996 KB
testcase_30 AC 120 ms
25,628 KB
testcase_31 AC 51 ms
16,092 KB
testcase_32 AC 46 ms
13,696 KB
testcase_33 AC 65 ms
17,552 KB
testcase_34 AC 118 ms
25,740 KB
testcase_35 AC 76 ms
18,996 KB
testcase_36 AC 123 ms
26,020 KB
testcase_37 AC 112 ms
24,680 KB
testcase_38 AC 43 ms
13,184 KB
testcase_39 AC 95 ms
19,572 KB
testcase_40 AC 94 ms
19,532 KB
testcase_41 AC 32 ms
10,880 KB
testcase_42 AC 39 ms
12,416 KB
testcase_43 AC 30 ms
10,624 KB
testcase_44 AC 30 ms
10,496 KB
testcase_45 AC 29 ms
10,752 KB
testcase_46 AC 29 ms
10,496 KB
testcase_47 AC 29 ms
10,496 KB
testcase_48 AC 29 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

flag=False
N,K=map(int,input().split())
A=list(map(int,input().split()))
B=[0]
for i in range(N):
    B.append(B[i]^A[i])
B_xor_K=set(B[1:])
for x in B:
    if x^K in B_xor_K:flag=True

print("Yes" if flag else "No" )
0