結果

問題 No.1456 Range Xor
ユーザー NaHCO314NaHCO314
提出日時 2021-03-12 12:35:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 249 bytes
コンパイル時間 458 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 100,352 KB
最終ジャッジ日時 2024-05-08 02:44:41
合計ジャッジ時間 4,581 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,584 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 35 ms
52,096 KB
testcase_03 AC 76 ms
100,096 KB
testcase_04 AC 75 ms
99,968 KB
testcase_05 AC 77 ms
100,096 KB
testcase_06 AC 75 ms
99,840 KB
testcase_07 AC 78 ms
100,096 KB
testcase_08 AC 74 ms
100,352 KB
testcase_09 AC 76 ms
100,224 KB
testcase_10 AC 76 ms
99,456 KB
testcase_11 AC 46 ms
66,304 KB
testcase_12 AC 43 ms
62,336 KB
testcase_13 AC 51 ms
71,296 KB
testcase_14 AC 52 ms
71,680 KB
testcase_15 AC 72 ms
94,464 KB
testcase_16 AC 68 ms
91,136 KB
testcase_17 AC 54 ms
76,544 KB
testcase_18 AC 49 ms
71,808 KB
testcase_19 AC 58 ms
84,480 KB
testcase_20 AC 64 ms
91,136 KB
testcase_21 AC 58 ms
84,480 KB
testcase_22 AC 61 ms
84,864 KB
testcase_23 AC 51 ms
73,088 KB
testcase_24 AC 42 ms
65,536 KB
testcase_25 AC 48 ms
70,272 KB
testcase_26 AC 56 ms
79,744 KB
testcase_27 AC 63 ms
87,936 KB
testcase_28 AC 47 ms
68,864 KB
testcase_29 AC 72 ms
95,616 KB
testcase_30 AC 75 ms
99,712 KB
testcase_31 AC 46 ms
67,968 KB
testcase_32 AC 44 ms
66,432 KB
testcase_33 AC 49 ms
74,240 KB
testcase_34 AC 71 ms
98,944 KB
testcase_35 AC 56 ms
80,128 KB
testcase_36 AC 75 ms
99,840 KB
testcase_37 AC 74 ms
95,488 KB
testcase_38 AC 45 ms
65,664 KB
testcase_39 AC 64 ms
88,704 KB
testcase_40 AC 66 ms
88,192 KB
testcase_41 AC 39 ms
59,648 KB
testcase_42 AC 41 ms
63,488 KB
testcase_43 AC 34 ms
51,968 KB
testcase_44 AC 32 ms
52,096 KB
testcase_45 AC 34 ms
51,712 KB
testcase_46 AC 33 ms
51,712 KB
testcase_47 AC 34 ms
52,096 KB
testcase_48 AC 34 ms
51,968 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