結果

問題 No.1456 Range Xor
ユーザー nasubi24nasubi24
提出日時 2021-03-31 21:10:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 271 bytes
コンパイル時間 479 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 96,000 KB
最終ジャッジ日時 2024-05-09 03:35:05
合計ジャッジ時間 6,047 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,504 KB
testcase_01 AC 47 ms
53,120 KB
testcase_02 AC 48 ms
53,376 KB
testcase_03 AC 87 ms
90,368 KB
testcase_04 AC 98 ms
94,848 KB
testcase_05 AC 111 ms
94,976 KB
testcase_06 AC 87 ms
90,624 KB
testcase_07 AC 120 ms
94,720 KB
testcase_08 AC 108 ms
94,848 KB
testcase_09 AC 90 ms
91,776 KB
testcase_10 AC 100 ms
94,848 KB
testcase_11 AC 70 ms
72,448 KB
testcase_12 AC 60 ms
65,664 KB
testcase_13 AC 79 ms
80,256 KB
testcase_14 AC 71 ms
73,728 KB
testcase_15 AC 83 ms
85,376 KB
testcase_16 AC 100 ms
95,232 KB
testcase_17 AC 89 ms
87,296 KB
testcase_18 AC 67 ms
71,296 KB
testcase_19 AC 102 ms
94,464 KB
testcase_20 AC 102 ms
95,104 KB
testcase_21 AC 84 ms
84,864 KB
testcase_22 AC 79 ms
80,896 KB
testcase_23 AC 79 ms
79,744 KB
testcase_24 AC 68 ms
70,272 KB
testcase_25 AC 76 ms
77,824 KB
testcase_26 AC 102 ms
93,952 KB
testcase_27 AC 90 ms
90,752 KB
testcase_28 AC 74 ms
75,904 KB
testcase_29 AC 125 ms
95,196 KB
testcase_30 AC 103 ms
95,232 KB
testcase_31 AC 71 ms
74,368 KB
testcase_32 AC 72 ms
72,960 KB
testcase_33 AC 79 ms
80,512 KB
testcase_34 AC 109 ms
96,000 KB
testcase_35 AC 85 ms
86,016 KB
testcase_36 AC 104 ms
95,232 KB
testcase_37 AC 125 ms
95,180 KB
testcase_38 AC 67 ms
70,272 KB
testcase_39 AC 84 ms
85,760 KB
testcase_40 AC 110 ms
93,696 KB
testcase_41 AC 58 ms
62,208 KB
testcase_42 AC 64 ms
67,456 KB
testcase_43 AC 48 ms
53,376 KB
testcase_44 AC 47 ms
53,248 KB
testcase_45 AC 47 ms
53,760 KB
testcase_46 AC 47 ms
53,504 KB
testcase_47 AC 47 ms
53,248 KB
testcase_48 AC 52 ms
53,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
n,k=map(int,input().split())
a=list(map(int,input().split()))
d=defaultdict(int)
cnt=0
d[str(0)]=1
for i in range(n):
    cnt^=a[i]
    if d.get(str(cnt^k))==1:
        print("Yes")
        break
    d[str(cnt)]=1
else:
    print("No")
0