結果

問題 No.1456 Range Xor
ユーザー NaHCO314NaHCO314
提出日時 2021-03-12 12:36:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 249 bytes
コンパイル時間 501 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 25,024 KB
最終ジャッジ日時 2024-05-08 02:44:35
合計ジャッジ時間 6,005 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 127 ms
25,024 KB
testcase_04 AC 125 ms
24,876 KB
testcase_05 AC 127 ms
24,396 KB
testcase_06 AC 123 ms
25,024 KB
testcase_07 AC 130 ms
24,388 KB
testcase_08 AC 124 ms
24,260 KB
testcase_09 AC 122 ms
24,336 KB
testcase_10 AC 122 ms
24,884 KB
testcase_11 AC 48 ms
13,440 KB
testcase_12 AC 37 ms
12,160 KB
testcase_13 AC 61 ms
17,088 KB
testcase_14 AC 59 ms
17,152 KB
testcase_15 AC 107 ms
23,432 KB
testcase_16 AC 94 ms
19,116 KB
testcase_17 AC 74 ms
16,928 KB
testcase_18 AC 57 ms
16,720 KB
testcase_19 AC 82 ms
18,232 KB
testcase_20 AC 98 ms
18,840 KB
testcase_21 AC 82 ms
18,180 KB
testcase_22 AC 86 ms
18,236 KB
testcase_23 AC 63 ms
17,156 KB
testcase_24 AC 43 ms
12,672 KB
testcase_25 AC 59 ms
16,252 KB
testcase_26 AC 79 ms
17,388 KB
testcase_27 AC 91 ms
18,172 KB
testcase_28 AC 55 ms
15,904 KB
testcase_29 AC 127 ms
23,528 KB
testcase_30 AC 120 ms
23,884 KB
testcase_31 AC 53 ms
15,836 KB
testcase_32 AC 48 ms
13,568 KB
testcase_33 AC 74 ms
16,780 KB
testcase_34 AC 121 ms
23,936 KB
testcase_35 AC 76 ms
17,952 KB
testcase_36 AC 123 ms
23,920 KB
testcase_37 AC 124 ms
23,328 KB
testcase_38 AC 44 ms
12,928 KB
testcase_39 AC 93 ms
18,740 KB
testcase_40 AC 99 ms
18,412 KB
testcase_41 AC 31 ms
11,008 KB
testcase_42 AC 40 ms
12,544 KB
testcase_43 AC 29 ms
10,880 KB
testcase_44 AC 30 ms
10,752 KB
testcase_45 AC 30 ms
10,752 KB
testcase_46 AC 31 ms
10,752 KB
testcase_47 AC 29 ms
10,752 KB
testcase_48 AC 29 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