結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,624 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 24 ms
10,624 KB
testcase_03 AC 87 ms
26,784 KB
testcase_04 AC 83 ms
27,056 KB
testcase_05 AC 85 ms
26,788 KB
testcase_06 AC 86 ms
26,908 KB
testcase_07 AC 96 ms
26,648 KB
testcase_08 AC 87 ms
27,044 KB
testcase_09 AC 86 ms
26,656 KB
testcase_10 AC 90 ms
26,652 KB
testcase_11 AC 38 ms
13,784 KB
testcase_12 AC 29 ms
12,032 KB
testcase_13 AC 50 ms
16,660 KB
testcase_14 AC 45 ms
16,512 KB
testcase_15 AC 70 ms
21,496 KB
testcase_16 AC 66 ms
20,592 KB
testcase_17 AC 56 ms
16,720 KB
testcase_18 AC 43 ms
16,476 KB
testcase_19 AC 60 ms
20,636 KB
testcase_20 AC 66 ms
20,296 KB
testcase_21 AC 57 ms
19,896 KB
testcase_22 AC 59 ms
20,668 KB
testcase_23 AC 45 ms
16,468 KB
testcase_24 AC 34 ms
13,036 KB
testcase_25 AC 44 ms
15,768 KB
testcase_26 AC 60 ms
19,540 KB
testcase_27 AC 63 ms
20,736 KB
testcase_28 AC 42 ms
15,356 KB
testcase_29 AC 94 ms
25,696 KB
testcase_30 AC 84 ms
26,192 KB
testcase_31 AC 41 ms
13,908 KB
testcase_32 AC 38 ms
13,824 KB
testcase_33 AC 50 ms
16,344 KB
testcase_34 AC 82 ms
25,960 KB
testcase_35 AC 54 ms
19,736 KB
testcase_36 AC 83 ms
26,180 KB
testcase_37 AC 93 ms
20,776 KB
testcase_38 AC 36 ms
13,184 KB
testcase_39 AC 67 ms
20,640 KB
testcase_40 AC 78 ms
20,344 KB
testcase_41 AC 26 ms
11,008 KB
testcase_42 AC 31 ms
12,160 KB
testcase_43 WA -
testcase_44 AC 24 ms
10,624 KB
testcase_45 AC 24 ms
10,496 KB
testcase_46 AC 24 ms
10,752 KB
testcase_47 WA -
testcase_48 AC 24 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

d = dict()
X = K
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