結果

問題 No.1456 Range Xor
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-09-08 11:19:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 230 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 93,116 KB
最終ジャッジ日時 2024-06-07 11:58:21
合計ジャッジ時間 5,188 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 38 ms
52,348 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 47 ms
65,720 KB
testcase_12 AC 44 ms
63,320 KB
testcase_13 AC 51 ms
68,908 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 54 ms
74,120 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 45 ms
64,864 KB
testcase_25 AC 50 ms
68,160 KB
testcase_26 AC 56 ms
74,884 KB
testcase_27 WA -
testcase_28 AC 49 ms
67,032 KB
testcase_29 AC 68 ms
88,744 KB
testcase_30 WA -
testcase_31 AC 47 ms
66,768 KB
testcase_32 AC 47 ms
66,716 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 67 ms
87,732 KB
testcase_38 AC 47 ms
63,940 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 43 ms
59,784 KB
testcase_42 AC 45 ms
62,564 KB
testcase_43 WA -
testcase_44 AC 37 ms
53,492 KB
testcase_45 AC 37 ms
53,112 KB
testcase_46 AC 37 ms
53,172 KB
testcase_47 WA -
testcase_48 AC 37 ms
52,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
A = list(map(int,input().split()))
A = [0]
for i in range(n):
    A.append(A[-1]^A[i])
A_set = set(A)
for i in range(len(A)):
    if A[i] ^ k in A_set:
        print("Yes")
        exit()
print("No")
0