結果

問題 No.1456 Range Xor
ユーザー nohakai3nohakai3
提出日時 2022-07-03 21:27:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 207 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 23,520 KB
最終ジャッジ日時 2024-05-07 05:33:39
合計ジャッジ時間 5,060 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 31 ms
10,496 KB
testcase_03 AC 72 ms
21,544 KB
testcase_04 AC 80 ms
21,676 KB
testcase_05 AC 105 ms
21,676 KB
testcase_06 AC 75 ms
21,680 KB
testcase_07 AC 113 ms
21,804 KB
testcase_08 AC 96 ms
21,552 KB
testcase_09 AC 75 ms
21,680 KB
testcase_10 AC 86 ms
21,548 KB
testcase_11 AC 47 ms
13,396 KB
testcase_12 AC 40 ms
12,160 KB
testcase_13 AC 62 ms
16,960 KB
testcase_14 AC 49 ms
14,716 KB
testcase_15 AC 65 ms
19,712 KB
testcase_16 AC 78 ms
18,860 KB
testcase_17 AC 72 ms
17,080 KB
testcase_18 AC 45 ms
14,416 KB
testcase_19 AC 78 ms
18,328 KB
testcase_20 AC 80 ms
18,708 KB
testcase_21 AC 67 ms
17,752 KB
testcase_22 AC 59 ms
17,432 KB
testcase_23 AC 60 ms
17,024 KB
testcase_24 AC 43 ms
12,800 KB
testcase_25 AC 58 ms
16,256 KB
testcase_26 AC 76 ms
17,352 KB
testcase_27 AC 75 ms
18,456 KB
testcase_28 AC 55 ms
15,900 KB
testcase_29 AC 124 ms
23,520 KB
testcase_30 AC 88 ms
20,896 KB
testcase_31 AC 54 ms
15,700 KB
testcase_32 AC 48 ms
13,696 KB
testcase_33 AC 60 ms
16,656 KB
testcase_34 AC 97 ms
20,944 KB
testcase_35 AC 70 ms
18,040 KB
testcase_36 AC 90 ms
21,224 KB
testcase_37 AC 121 ms
23,340 KB
testcase_38 AC 45 ms
12,800 KB
testcase_39 AC 68 ms
18,616 KB
testcase_40 AC 94 ms
18,416 KB
testcase_41 AC 33 ms
10,880 KB
testcase_42 AC 40 ms
12,416 KB
testcase_43 AC 33 ms
10,624 KB
testcase_44 AC 32 ms
10,624 KB
testcase_45 AC 32 ms
10,752 KB
testcase_46 AC 32 ms
10,752 KB
testcase_47 AC 33 ms
10,624 KB
testcase_48 AC 32 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
A=list(map(int,input().split()))
s=set()
now=0
s.add(now)
for i in A:
    now=now^i
    tmp=now^k
    if tmp in s:
        print("Yes")
        exit()
    s.add(now)

print("No")
0