結果

問題 No.1456 Range Xor
ユーザー hir355hir355
提出日時 2021-03-31 21:21:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 254 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 98,432 KB
最終ジャッジ日時 2024-05-09 04:50:54
合計ジャッジ時間 5,125 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 41 ms
52,224 KB
testcase_03 AC 88 ms
97,024 KB
testcase_04 AC 79 ms
89,088 KB
testcase_05 AC 84 ms
93,568 KB
testcase_06 AC 90 ms
98,432 KB
testcase_07 AC 77 ms
87,040 KB
testcase_08 AC 77 ms
87,040 KB
testcase_09 AC 85 ms
90,880 KB
testcase_10 AC 77 ms
86,272 KB
testcase_11 AC 56 ms
66,816 KB
testcase_12 AC 52 ms
62,208 KB
testcase_13 AC 61 ms
71,680 KB
testcase_14 AC 60 ms
70,528 KB
testcase_15 AC 75 ms
85,504 KB
testcase_16 AC 78 ms
87,168 KB
testcase_17 AC 68 ms
76,544 KB
testcase_18 AC 58 ms
69,760 KB
testcase_19 AC 69 ms
78,976 KB
testcase_20 AC 73 ms
82,944 KB
testcase_21 AC 68 ms
77,568 KB
testcase_22 AC 74 ms
84,096 KB
testcase_23 AC 60 ms
71,424 KB
testcase_24 AC 54 ms
65,792 KB
testcase_25 AC 60 ms
70,400 KB
testcase_26 AC 70 ms
79,744 KB
testcase_27 AC 77 ms
85,888 KB
testcase_28 AC 58 ms
69,120 KB
testcase_29 AC 88 ms
95,744 KB
testcase_30 AC 84 ms
93,184 KB
testcase_31 AC 57 ms
68,224 KB
testcase_32 AC 56 ms
67,200 KB
testcase_33 AC 62 ms
71,424 KB
testcase_34 AC 84 ms
94,080 KB
testcase_35 AC 70 ms
79,360 KB
testcase_36 AC 80 ms
88,832 KB
testcase_37 AC 87 ms
95,104 KB
testcase_38 AC 55 ms
65,664 KB
testcase_39 AC 80 ms
88,704 KB
testcase_40 AC 70 ms
79,872 KB
testcase_41 AC 50 ms
59,904 KB
testcase_42 AC 53 ms
63,360 KB
testcase_43 AC 41 ms
51,712 KB
testcase_44 AC 41 ms
51,968 KB
testcase_45 AC 40 ms
52,096 KB
testcase_46 AC 41 ms
51,712 KB
testcase_47 AC 41 ms
51,968 KB
testcase_48 AC 41 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
a = [0] + list(map(int, input().split()))
for i in range(n):
    a[i + 1] ^= a[i]
s = set()
for i in range(n - 1, -1, -1):
    s.add(a[i + 1] ^ k)
    if a[i] in s:
        print('Yes')
        break
else:
    print('No')
0