結果

問題 No.1456 Range Xor
ユーザー kikagekikage
提出日時 2021-08-11 18:34:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 221 bytes
コンパイル時間 127 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 26,220 KB
最終ジャッジ日時 2024-09-25 05:01:35
合計ジャッジ時間 5,244 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 28 ms
10,880 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 118 ms
26,184 KB
testcase_04 AC 118 ms
26,220 KB
testcase_05 AC 123 ms
26,144 KB
testcase_06 AC 120 ms
26,036 KB
testcase_07 AC 118 ms
26,124 KB
testcase_08 AC 123 ms
26,160 KB
testcase_09 AC 118 ms
26,148 KB
testcase_10 AC 117 ms
26,124 KB
testcase_11 AC 43 ms
13,656 KB
testcase_12 AC 35 ms
12,288 KB
testcase_13 AC 58 ms
17,472 KB
testcase_14 AC 56 ms
17,404 KB
testcase_15 AC 101 ms
24,756 KB
testcase_16 AC 90 ms
19,952 KB
testcase_17 AC 65 ms
17,708 KB
testcase_18 AC 58 ms
17,360 KB
testcase_19 AC 84 ms
19,100 KB
testcase_20 AC 97 ms
19,908 KB
testcase_21 AC 82 ms
19,048 KB
testcase_22 AC 85 ms
19,008 KB
testcase_23 AC 59 ms
17,536 KB
testcase_24 AC 40 ms
12,928 KB
testcase_25 AC 54 ms
16,896 KB
testcase_26 AC 72 ms
18,516 KB
testcase_27 AC 88 ms
19,444 KB
testcase_28 AC 51 ms
16,288 KB
testcase_29 AC 110 ms
25,120 KB
testcase_30 AC 118 ms
25,520 KB
testcase_31 AC 48 ms
16,216 KB
testcase_32 AC 45 ms
13,696 KB
testcase_33 AC 65 ms
17,676 KB
testcase_34 AC 116 ms
25,704 KB
testcase_35 AC 73 ms
18,808 KB
testcase_36 AC 123 ms
26,028 KB
testcase_37 AC 107 ms
25,012 KB
testcase_38 AC 41 ms
13,184 KB
testcase_39 AC 93 ms
19,700 KB
testcase_40 AC 91 ms
19,444 KB
testcase_41 AC 31 ms
11,008 KB
testcase_42 AC 38 ms
12,416 KB
testcase_43 WA -
testcase_44 AC 29 ms
10,752 KB
testcase_45 AC 28 ms
10,752 KB
testcase_46 AC 29 ms
10,624 KB
testcase_47 WA -
testcase_48 AC 28 ms
10,752 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[1:]:
    if x^K in B_xor_K:flag=True

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