結果

問題 No.1456 Range Xor
ユーザー titiatitia
提出日時 2021-03-31 21:33:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 387 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 28,240 KB
最終ジャッジ日時 2024-05-09 05:43:53
合計ジャッジ時間 5,647 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 112 ms
28,084 KB
testcase_04 AC 107 ms
28,092 KB
testcase_05 AC 118 ms
28,020 KB
testcase_06 AC 110 ms
28,232 KB
testcase_07 AC 141 ms
28,080 KB
testcase_08 AC 115 ms
28,080 KB
testcase_09 AC 112 ms
28,240 KB
testcase_10 AC 107 ms
28,160 KB
testcase_11 AC 52 ms
13,916 KB
testcase_12 AC 40 ms
12,032 KB
testcase_13 AC 70 ms
16,784 KB
testcase_14 AC 59 ms
16,544 KB
testcase_15 AC 96 ms
22,828 KB
testcase_16 AC 87 ms
21,996 KB
testcase_17 AC 88 ms
17,268 KB
testcase_18 AC 54 ms
16,752 KB
testcase_19 AC 78 ms
20,260 KB
testcase_20 AC 87 ms
21,932 KB
testcase_21 AC 74 ms
20,736 KB
testcase_22 AC 77 ms
20,244 KB
testcase_23 AC 61 ms
16,508 KB
testcase_24 AC 47 ms
13,056 KB
testcase_25 AC 65 ms
16,012 KB
testcase_26 AC 92 ms
20,012 KB
testcase_27 AC 78 ms
21,360 KB
testcase_28 AC 59 ms
15,644 KB
testcase_29 AC 146 ms
27,132 KB
testcase_30 AC 106 ms
27,756 KB
testcase_31 AC 57 ms
14,452 KB
testcase_32 AC 53 ms
14,080 KB
testcase_33 AC 69 ms
17,276 KB
testcase_34 AC 110 ms
27,640 KB
testcase_35 AC 70 ms
20,540 KB
testcase_36 AC 107 ms
27,900 KB
testcase_37 AC 145 ms
22,752 KB
testcase_38 AC 49 ms
13,312 KB
testcase_39 AC 84 ms
21,824 KB
testcase_40 AC 108 ms
21,708 KB
testcase_41 AC 33 ms
11,008 KB
testcase_42 AC 43 ms
12,160 KB
testcase_43 WA -
testcase_44 AC 30 ms
10,624 KB
testcase_45 WA -
testcase_46 AC 31 ms
10,624 KB
testcase_47 WA -
testcase_48 AC 30 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import Counter

N,K=map(int,input().split())
A=list(map(int,input().split()))

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

Y=Counter(X[1:])

for y in Y:
    k=K^y
    if k==y:
        if Y[k]>=2:
            print("Yes")
            break
    else:
        if Y[k]>=1:
            print("Yes")
            break

else:
    print("No")
0