結果

問題 No.1456 Range Xor
ユーザー rlangevinrlangevin
提出日時 2024-11-12 00:22:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 317 bytes
コンパイル時間 1,835 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 114,176 KB
最終ジャッジ日時 2024-11-12 00:22:34
合計ジャッジ時間 8,145 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,504 KB
testcase_01 AC 44 ms
53,248 KB
testcase_02 AC 43 ms
53,504 KB
testcase_03 AC 111 ms
109,568 KB
testcase_04 AC 99 ms
106,752 KB
testcase_05 AC 118 ms
109,512 KB
testcase_06 AC 113 ms
106,496 KB
testcase_07 AC 131 ms
109,740 KB
testcase_08 AC 125 ms
109,568 KB
testcase_09 AC 117 ms
109,568 KB
testcase_10 AC 96 ms
103,680 KB
testcase_11 AC 63 ms
72,832 KB
testcase_12 AC 56 ms
66,688 KB
testcase_13 AC 71 ms
81,152 KB
testcase_14 AC 66 ms
77,312 KB
testcase_15 AC 104 ms
99,328 KB
testcase_16 AC 88 ms
95,744 KB
testcase_17 AC 82 ms
88,576 KB
testcase_18 AC 64 ms
75,776 KB
testcase_19 AC 83 ms
90,112 KB
testcase_20 AC 86 ms
95,232 KB
testcase_21 AC 86 ms
87,552 KB
testcase_22 AC 79 ms
88,960 KB
testcase_23 AC 69 ms
80,256 KB
testcase_24 AC 68 ms
70,400 KB
testcase_25 AC 78 ms
78,976 KB
testcase_26 AC 86 ms
91,776 KB
testcase_27 AC 91 ms
91,136 KB
testcase_28 AC 69 ms
77,696 KB
testcase_29 AC 122 ms
114,176 KB
testcase_30 AC 102 ms
103,808 KB
testcase_31 AC 73 ms
75,008 KB
testcase_32 AC 64 ms
73,216 KB
testcase_33 AC 87 ms
83,072 KB
testcase_34 AC 97 ms
103,936 KB
testcase_35 AC 81 ms
84,480 KB
testcase_36 AC 100 ms
105,984 KB
testcase_37 AC 118 ms
114,048 KB
testcase_38 AC 68 ms
70,784 KB
testcase_39 AC 86 ms
94,080 KB
testcase_40 AC 101 ms
101,248 KB
testcase_41 AC 56 ms
62,976 KB
testcase_42 AC 57 ms
68,352 KB
testcase_43 AC 46 ms
53,120 KB
testcase_44 AC 44 ms
53,248 KB
testcase_45 AC 43 ms
53,120 KB
testcase_46 AC 45 ms
53,120 KB
testcase_47 AC 47 ms
53,508 KB
testcase_48 AC 46 ms
53,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

N, K = map(int, input().split())
A = list(map(int, input().split()))
Ac = [0] * (N + 1)
for i in range(N):
	Ac[i + 1] = Ac[i] ^ A[i]
	
D = defaultdict(int)
for i in range(N + 1):
	D[Ac[i]] += 1
	
for i in range(N + 1):
	D[Ac[i]] -= 1
	if D[Ac[i] ^ K]:
		print("Yes")
		exit()
		
print("No")
0