結果

問題 No.1456 Range Xor
ユーザー lloyzlloyz
提出日時 2022-02-15 00:38:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 239 bytes
コンパイル時間 76 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 23,424 KB
最終ジャッジ日時 2024-06-29 06:57:39
合計ジャッジ時間 5,398 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 70 ms
21,548 KB
testcase_04 AC 78 ms
21,676 KB
testcase_05 AC 99 ms
21,804 KB
testcase_06 AC 73 ms
21,684 KB
testcase_07 AC 107 ms
21,804 KB
testcase_08 AC 92 ms
21,804 KB
testcase_09 AC 71 ms
21,804 KB
testcase_10 AC 82 ms
21,676 KB
testcase_11 AC 44 ms
13,400 KB
testcase_12 AC 37 ms
12,160 KB
testcase_13 AC 60 ms
16,916 KB
testcase_14 AC 47 ms
14,716 KB
testcase_15 AC 62 ms
19,572 KB
testcase_16 AC 76 ms
18,856 KB
testcase_17 AC 71 ms
17,212 KB
testcase_18 AC 44 ms
14,284 KB
testcase_19 AC 79 ms
18,332 KB
testcase_20 AC 79 ms
18,712 KB
testcase_21 AC 66 ms
17,764 KB
testcase_22 AC 59 ms
17,436 KB
testcase_23 AC 58 ms
17,028 KB
testcase_24 AC 41 ms
12,800 KB
testcase_25 AC 57 ms
16,252 KB
testcase_26 AC 75 ms
17,252 KB
testcase_27 AC 74 ms
18,556 KB
testcase_28 AC 52 ms
15,776 KB
testcase_29 AC 120 ms
23,424 KB
testcase_30 AC 86 ms
21,124 KB
testcase_31 AC 52 ms
15,828 KB
testcase_32 AC 47 ms
13,696 KB
testcase_33 AC 61 ms
16,780 KB
testcase_34 AC 95 ms
20,940 KB
testcase_35 AC 68 ms
17,836 KB
testcase_36 AC 87 ms
21,352 KB
testcase_37 AC 117 ms
23,328 KB
testcase_38 AC 43 ms
12,800 KB
testcase_39 AC 64 ms
18,616 KB
testcase_40 AC 93 ms
18,548 KB
testcase_41 AC 31 ms
10,880 KB
testcase_42 AC 38 ms
12,416 KB
testcase_43 AC 28 ms
10,624 KB
testcase_44 AC 29 ms
10,496 KB
testcase_45 AC 29 ms
10,496 KB
testcase_46 AC 29 ms
10,496 KB
testcase_47 AC 29 ms
10,496 KB
testcase_48 AC 29 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
A = list(map(int, input().split()))

seen = set([0])
curr = 0
for i in range(n):
    curr ^= A[i]
    temp = curr ^ k
    if temp in seen:
        print("Yes")
        exit()
    seen.add(curr)
print("No")
0