結果

問題 No.1456 Range Xor
ユーザー titiatitia
提出日時 2021-03-31 21:34:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 428 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 28,276 KB
最終ジャッジ日時 2024-05-09 05:49:22
合計ジャッジ時間 5,276 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 106 ms
28,072 KB
testcase_04 AC 104 ms
28,172 KB
testcase_05 AC 109 ms
28,276 KB
testcase_06 AC 104 ms
28,236 KB
testcase_07 AC 135 ms
28,056 KB
testcase_08 AC 109 ms
28,220 KB
testcase_09 AC 107 ms
28,240 KB
testcase_10 AC 99 ms
28,080 KB
testcase_11 AC 50 ms
13,928 KB
testcase_12 AC 37 ms
12,032 KB
testcase_13 AC 67 ms
16,760 KB
testcase_14 AC 55 ms
16,636 KB
testcase_15 AC 91 ms
22,836 KB
testcase_16 AC 84 ms
22,052 KB
testcase_17 AC 80 ms
17,404 KB
testcase_18 AC 51 ms
16,788 KB
testcase_19 AC 74 ms
20,452 KB
testcase_20 AC 81 ms
22,024 KB
testcase_21 AC 71 ms
20,684 KB
testcase_22 AC 74 ms
20,432 KB
testcase_23 AC 59 ms
16,808 KB
testcase_24 AC 46 ms
13,308 KB
testcase_25 AC 62 ms
16,268 KB
testcase_26 AC 89 ms
20,168 KB
testcase_27 AC 78 ms
21,496 KB
testcase_28 AC 57 ms
15,732 KB
testcase_29 AC 139 ms
27,084 KB
testcase_30 AC 101 ms
27,648 KB
testcase_31 AC 54 ms
14,592 KB
testcase_32 AC 51 ms
14,080 KB
testcase_33 AC 66 ms
17,192 KB
testcase_34 AC 99 ms
27,712 KB
testcase_35 AC 68 ms
20,496 KB
testcase_36 AC 102 ms
27,864 KB
testcase_37 AC 135 ms
23,068 KB
testcase_38 AC 46 ms
13,312 KB
testcase_39 AC 81 ms
21,820 KB
testcase_40 AC 105 ms
21,816 KB
testcase_41 AC 31 ms
11,008 KB
testcase_42 AC 40 ms
12,416 KB
testcase_43 AC 29 ms
10,624 KB
testcase_44 AC 28 ms
10,624 KB
testcase_45 AC 29 ms
10,624 KB
testcase_46 AC 29 ms
10,624 KB
testcase_47 AC 29 ms
10,752 KB
testcase_48 AC 29 ms
10,752 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:])

if Y[K]>=1:
    print("Yes")
    exit()

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