結果

問題 No.1456 Range Xor
ユーザー 萩3萩3
提出日時 2021-04-30 19:27:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 327 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 113,664 KB
最終ジャッジ日時 2024-07-18 16:51:26
合計ジャッジ時間 5,487 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,480 KB
testcase_01 AC 35 ms
52,224 KB
testcase_02 AC 34 ms
51,584 KB
testcase_03 AC 92 ms
113,024 KB
testcase_04 AC 91 ms
113,152 KB
testcase_05 AC 95 ms
113,356 KB
testcase_06 AC 94 ms
113,152 KB
testcase_07 AC 94 ms
113,024 KB
testcase_08 AC 95 ms
113,024 KB
testcase_09 AC 97 ms
113,024 KB
testcase_10 AC 96 ms
113,664 KB
testcase_11 AC 46 ms
68,736 KB
testcase_12 AC 37 ms
63,104 KB
testcase_13 AC 53 ms
75,520 KB
testcase_14 AC 52 ms
75,520 KB
testcase_15 AC 82 ms
106,624 KB
testcase_16 AC 82 ms
101,888 KB
testcase_17 AC 63 ms
81,664 KB
testcase_18 AC 55 ms
74,752 KB
testcase_19 AC 72 ms
93,568 KB
testcase_20 AC 81 ms
101,504 KB
testcase_21 AC 72 ms
93,056 KB
testcase_22 AC 70 ms
93,568 KB
testcase_23 AC 54 ms
77,440 KB
testcase_24 AC 42 ms
67,328 KB
testcase_25 AC 48 ms
73,216 KB
testcase_26 AC 63 ms
86,784 KB
testcase_27 AC 74 ms
97,920 KB
testcase_28 AC 48 ms
72,064 KB
testcase_29 AC 87 ms
107,264 KB
testcase_30 AC 92 ms
112,640 KB
testcase_31 AC 50 ms
70,528 KB
testcase_32 AC 46 ms
69,376 KB
testcase_33 AC 58 ms
78,976 KB
testcase_34 AC 94 ms
112,896 KB
testcase_35 AC 66 ms
87,040 KB
testcase_36 AC 94 ms
112,640 KB
testcase_37 AC 88 ms
106,624 KB
testcase_38 AC 47 ms
67,072 KB
testcase_39 AC 79 ms
97,664 KB
testcase_40 AC 80 ms
97,536 KB
testcase_41 AC 41 ms
59,520 KB
testcase_42 AC 43 ms
64,388 KB
testcase_43 WA -
testcase_44 AC 32 ms
51,840 KB
testcase_45 AC 31 ms
51,968 KB
testcase_46 AC 31 ms
52,096 KB
testcase_47 WA -
testcase_48 AC 31 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def str1d():return sys.stdin.read().splitlines()
def int2d():return [list(map(int,s.split())) for s in str1d()]
inp = int2d()
n,k=inp[0]
tmp = 0
xorset = set()
kxorset = set()
for a in inp[1]:
    tmp ^= a
    xorset.add(tmp)
    kxorset.add(tmp^k)

if len(xorset & kxorset)>0:
    print('Yes')
else:
    print('No')
0