結果

問題 No.1456 Range Xor
ユーザー DrDrpilotDrDrpilot
提出日時 2022-03-16 15:56:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 206 bytes
コンパイル時間 133 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 23,464 KB
最終ジャッジ日時 2024-09-24 16:09:21
合計ジャッジ時間 4,537 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 67 ms
21,800 KB
testcase_04 AC 74 ms
21,800 KB
testcase_05 AC 93 ms
21,804 KB
testcase_06 AC 69 ms
21,804 KB
testcase_07 AC 100 ms
21,808 KB
testcase_08 AC 86 ms
21,808 KB
testcase_09 AC 70 ms
21,804 KB
testcase_10 AC 78 ms
21,936 KB
testcase_11 AC 43 ms
13,524 KB
testcase_12 AC 35 ms
12,288 KB
testcase_13 AC 56 ms
17,088 KB
testcase_14 AC 47 ms
14,720 KB
testcase_15 AC 59 ms
19,836 KB
testcase_16 AC 71 ms
18,988 KB
testcase_17 AC 65 ms
17,208 KB
testcase_18 AC 42 ms
14,544 KB
testcase_19 AC 70 ms
18,424 KB
testcase_20 AC 73 ms
18,712 KB
testcase_21 AC 62 ms
17,740 KB
testcase_22 AC 55 ms
17,560 KB
testcase_23 AC 54 ms
17,156 KB
testcase_24 AC 40 ms
12,928 KB
testcase_25 AC 53 ms
16,260 KB
testcase_26 AC 70 ms
17,508 KB
testcase_27 AC 70 ms
18,552 KB
testcase_28 AC 50 ms
15,908 KB
testcase_29 AC 105 ms
23,348 KB
testcase_30 AC 81 ms
21,124 KB
testcase_31 AC 46 ms
15,696 KB
testcase_32 AC 41 ms
13,696 KB
testcase_33 AC 52 ms
16,780 KB
testcase_34 AC 82 ms
21,068 KB
testcase_35 AC 63 ms
18,052 KB
testcase_36 AC 81 ms
21,352 KB
testcase_37 AC 104 ms
23,464 KB
testcase_38 AC 42 ms
12,800 KB
testcase_39 AC 63 ms
18,712 KB
testcase_40 AC 80 ms
18,676 KB
testcase_41 AC 28 ms
11,008 KB
testcase_42 AC 37 ms
12,544 KB
testcase_43 AC 28 ms
10,624 KB
testcase_44 AC 27 ms
10,752 KB
testcase_45 AC 27 ms
10,624 KB
testcase_46 AC 28 ms
10,624 KB
testcase_47 AC 28 ms
10,752 KB
testcase_48 AC 27 ms
10,624 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