結果

問題 No.1456 Range Xor
ユーザー H20H20
提出日時 2021-04-01 13:34:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 317 bytes
コンパイル時間 386 ms
コンパイル使用メモリ 82,856 KB
実行使用メモリ 108,360 KB
最終ジャッジ日時 2024-12-17 17:34:44
合計ジャッジ時間 5,112 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,080 KB
testcase_01 AC 39 ms
52,572 KB
testcase_02 WA -
testcase_03 AC 83 ms
106,360 KB
testcase_04 AC 84 ms
106,708 KB
testcase_05 AC 83 ms
107,720 KB
testcase_06 AC 85 ms
108,256 KB
testcase_07 AC 87 ms
107,372 KB
testcase_08 AC 84 ms
107,104 KB
testcase_09 AC 84 ms
108,360 KB
testcase_10 AC 83 ms
106,964 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 54 ms
73,756 KB
testcase_15 AC 78 ms
100,704 KB
testcase_16 AC 73 ms
96,964 KB
testcase_17 WA -
testcase_18 AC 54 ms
74,232 KB
testcase_19 AC 68 ms
89,124 KB
testcase_20 AC 75 ms
97,204 KB
testcase_21 AC 62 ms
89,068 KB
testcase_22 AC 66 ms
89,468 KB
testcase_23 AC 56 ms
76,980 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 68 ms
93,940 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 84 ms
106,532 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 57 ms
78,752 KB
testcase_34 AC 82 ms
105,948 KB
testcase_35 AC 64 ms
83,920 KB
testcase_36 AC 82 ms
106,976 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 72 ms
93,388 KB
testcase_40 AC 71 ms
93,628 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 37 ms
53,292 KB
testcase_44 WA -
testcase_45 AC 38 ms
52,552 KB
testcase_46 AC 37 ms
52,140 KB
testcase_47 AC 37 ms
52,260 KB
testcase_48 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
A = list(map(int,input().split()))
XORA = [A[0]]
for i in range(1,N):
    XORA.append(XORA[-1]^A[i])
SXORA = set(XORA)
if K in SXORA:
    print('Yes')
    exit()
TEMP = 0
for i in range(N):
    TEMP = TEMP ^ A[i]
    if K^TEMP in SXORA:
        print('Yes')
        exit()


print('NO')
0