結果

問題 No.1456 Range Xor
ユーザー nasubi24nasubi24
提出日時 2021-03-31 21:10:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 271 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 82,916 KB
実行使用メモリ 95,764 KB
最終ジャッジ日時 2024-12-15 12:53:03
合計ジャッジ時間 5,430 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,892 KB
testcase_01 AC 43 ms
54,912 KB
testcase_02 AC 42 ms
53,652 KB
testcase_03 AC 74 ms
90,184 KB
testcase_04 AC 85 ms
95,212 KB
testcase_05 AC 99 ms
94,996 KB
testcase_06 AC 74 ms
90,852 KB
testcase_07 AC 107 ms
94,896 KB
testcase_08 AC 93 ms
94,944 KB
testcase_09 AC 77 ms
92,216 KB
testcase_10 AC 87 ms
94,772 KB
testcase_11 AC 59 ms
74,540 KB
testcase_12 AC 53 ms
65,764 KB
testcase_13 AC 66 ms
80,872 KB
testcase_14 AC 60 ms
74,240 KB
testcase_15 AC 68 ms
85,720 KB
testcase_16 AC 86 ms
95,164 KB
testcase_17 AC 76 ms
87,308 KB
testcase_18 AC 56 ms
71,532 KB
testcase_19 AC 88 ms
94,588 KB
testcase_20 AC 87 ms
95,116 KB
testcase_21 AC 71 ms
85,508 KB
testcase_22 AC 66 ms
81,160 KB
testcase_23 AC 66 ms
81,092 KB
testcase_24 AC 56 ms
70,692 KB
testcase_25 AC 64 ms
79,152 KB
testcase_26 AC 88 ms
93,792 KB
testcase_27 AC 76 ms
90,452 KB
testcase_28 AC 63 ms
76,984 KB
testcase_29 AC 112 ms
95,268 KB
testcase_30 AC 91 ms
95,336 KB
testcase_31 AC 62 ms
75,252 KB
testcase_32 AC 59 ms
74,088 KB
testcase_33 AC 66 ms
80,952 KB
testcase_34 AC 96 ms
95,764 KB
testcase_35 AC 73 ms
85,976 KB
testcase_36 AC 89 ms
95,564 KB
testcase_37 AC 111 ms
95,392 KB
testcase_38 AC 57 ms
70,888 KB
testcase_39 AC 72 ms
86,704 KB
testcase_40 AC 94 ms
93,920 KB
testcase_41 AC 50 ms
63,160 KB
testcase_42 AC 55 ms
68,324 KB
testcase_43 AC 42 ms
53,812 KB
testcase_44 AC 41 ms
54,216 KB
testcase_45 AC 42 ms
54,488 KB
testcase_46 AC 43 ms
54,532 KB
testcase_47 AC 43 ms
54,444 KB
testcase_48 AC 43 ms
54,892 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