結果

問題 No.1456 Range Xor
ユーザー 小野寺健小野寺健
提出日時 2021-04-30 16:16:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 240 bytes
コンパイル時間 72 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 27,004 KB
最終ジャッジ日時 2024-07-18 13:09:04
合計ジャッジ時間 4,284 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,624 KB
testcase_01 AC 23 ms
10,624 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 86 ms
27,004 KB
testcase_04 AC 85 ms
26,632 KB
testcase_05 AC 86 ms
27,000 KB
testcase_06 AC 82 ms
26,964 KB
testcase_07 AC 93 ms
26,540 KB
testcase_08 AC 90 ms
26,728 KB
testcase_09 AC 86 ms
26,548 KB
testcase_10 AC 84 ms
26,632 KB
testcase_11 AC 39 ms
13,652 KB
testcase_12 AC 31 ms
11,904 KB
testcase_13 AC 50 ms
16,660 KB
testcase_14 AC 46 ms
16,384 KB
testcase_15 AC 72 ms
21,528 KB
testcase_16 AC 69 ms
20,644 KB
testcase_17 AC 57 ms
16,700 KB
testcase_18 AC 42 ms
16,620 KB
testcase_19 AC 62 ms
20,688 KB
testcase_20 AC 68 ms
20,552 KB
testcase_21 AC 60 ms
20,020 KB
testcase_22 AC 61 ms
20,560 KB
testcase_23 AC 48 ms
16,640 KB
testcase_24 AC 37 ms
12,920 KB
testcase_25 AC 47 ms
15,760 KB
testcase_26 AC 63 ms
19,460 KB
testcase_27 AC 63 ms
20,880 KB
testcase_28 AC 44 ms
15,388 KB
testcase_29 AC 101 ms
25,836 KB
testcase_30 AC 84 ms
26,056 KB
testcase_31 AC 41 ms
14,244 KB
testcase_32 AC 38 ms
13,824 KB
testcase_33 AC 51 ms
16,356 KB
testcase_34 AC 83 ms
26,176 KB
testcase_35 AC 53 ms
19,864 KB
testcase_36 AC 83 ms
26,376 KB
testcase_37 AC 95 ms
20,644 KB
testcase_38 AC 37 ms
13,312 KB
testcase_39 AC 64 ms
20,528 KB
testcase_40 AC 80 ms
20,472 KB
testcase_41 AC 26 ms
11,008 KB
testcase_42 AC 32 ms
12,416 KB
testcase_43 AC 24 ms
10,880 KB
testcase_44 AC 24 ms
10,880 KB
testcase_45 AC 24 ms
10,624 KB
testcase_46 AC 24 ms
10,624 KB
testcase_47 AC 24 ms
10,752 KB
testcase_48 AC 24 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())

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

d = dict()
X = K
d[X] = True
for a in A:
    X ^= a
    d[X] = True

X = 0
for a in A:
    X ^= a
    if X in d:
        print('Yes')
        break
else:
    print('No')
0