結果

問題 No.1456 Range Xor
ユーザー NaHCO314NaHCO314
提出日時 2021-03-12 12:36:39
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 249 bytes
コンパイル時間 386 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 25,012 KB
最終ジャッジ日時 2024-12-14 02:34:10
合計ジャッジ時間 5,688 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 126 ms
25,012 KB
testcase_04 AC 124 ms
24,288 KB
testcase_05 AC 125 ms
24,924 KB
testcase_06 AC 118 ms
24,252 KB
testcase_07 AC 135 ms
24,928 KB
testcase_08 AC 121 ms
24,356 KB
testcase_09 AC 122 ms
24,196 KB
testcase_10 AC 120 ms
24,348 KB
testcase_11 AC 47 ms
13,404 KB
testcase_12 AC 36 ms
12,160 KB
testcase_13 AC 59 ms
17,084 KB
testcase_14 AC 56 ms
17,156 KB
testcase_15 AC 103 ms
23,484 KB
testcase_16 AC 91 ms
19,112 KB
testcase_17 AC 71 ms
16,876 KB
testcase_18 AC 56 ms
16,844 KB
testcase_19 AC 81 ms
18,168 KB
testcase_20 AC 92 ms
18,844 KB
testcase_21 AC 80 ms
18,272 KB
testcase_22 AC 83 ms
18,236 KB
testcase_23 AC 61 ms
17,160 KB
testcase_24 AC 44 ms
12,800 KB
testcase_25 AC 58 ms
16,256 KB
testcase_26 AC 77 ms
17,520 KB
testcase_27 AC 88 ms
18,304 KB
testcase_28 AC 53 ms
15,904 KB
testcase_29 AC 116 ms
23,528 KB
testcase_30 AC 122 ms
23,832 KB
testcase_31 AC 53 ms
15,832 KB
testcase_32 AC 47 ms
13,696 KB
testcase_33 AC 64 ms
16,780 KB
testcase_34 AC 113 ms
23,904 KB
testcase_35 AC 73 ms
18,100 KB
testcase_36 AC 116 ms
23,908 KB
testcase_37 AC 120 ms
23,372 KB
testcase_38 AC 45 ms
12,928 KB
testcase_39 AC 91 ms
18,748 KB
testcase_40 AC 100 ms
18,416 KB
testcase_41 AC 31 ms
11,008 KB
testcase_42 AC 39 ms
12,544 KB
testcase_43 AC 29 ms
10,880 KB
testcase_44 AC 29 ms
10,752 KB
testcase_45 AC 29 ms
10,752 KB
testcase_46 AC 28 ms
10,880 KB
testcase_47 AC 28 ms
10,752 KB
testcase_48 AC 28 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
a = [0] + list(map(int, input().split()))
b = set()
b.add(a[1] ^ k)

for i in range(1, n+1):
    a[i] ^= a[i-1]
    b.add(a[i] ^ k)
for i in a:
    if i in b:
        print("Yes")
        break
else:
    print("No")
0