結果

問題 No.1456 Range Xor
ユーザー miya145592miya145592
提出日時 2023-05-08 23:41:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 212 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 103,780 KB
最終ジャッジ日時 2024-11-25 12:48:55
合計ジャッジ時間 5,956 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,876 KB
testcase_01 AC 34 ms
52,108 KB
testcase_02 AC 35 ms
53,292 KB
testcase_03 AC 69 ms
93,764 KB
testcase_04 AC 69 ms
94,964 KB
testcase_05 AC 76 ms
101,412 KB
testcase_06 AC 70 ms
93,752 KB
testcase_07 AC 80 ms
103,780 KB
testcase_08 AC 79 ms
100,096 KB
testcase_09 AC 71 ms
94,504 KB
testcase_10 AC 70 ms
96,272 KB
testcase_11 AC 45 ms
69,596 KB
testcase_12 AC 41 ms
64,300 KB
testcase_13 AC 52 ms
74,932 KB
testcase_14 AC 50 ms
71,596 KB
testcase_15 AC 61 ms
87,564 KB
testcase_16 AC 64 ms
90,464 KB
testcase_17 AC 58 ms
79,820 KB
testcase_18 AC 47 ms
70,684 KB
testcase_19 AC 61 ms
84,916 KB
testcase_20 AC 66 ms
91,188 KB
testcase_21 AC 57 ms
82,632 KB
testcase_22 AC 57 ms
81,508 KB
testcase_23 AC 54 ms
74,064 KB
testcase_24 AC 45 ms
67,204 KB
testcase_25 AC 50 ms
72,468 KB
testcase_26 AC 60 ms
82,852 KB
testcase_27 AC 66 ms
86,448 KB
testcase_28 AC 49 ms
70,728 KB
testcase_29 AC 78 ms
102,228 KB
testcase_30 AC 71 ms
96,128 KB
testcase_31 AC 50 ms
70,708 KB
testcase_32 AC 46 ms
68,572 KB
testcase_33 AC 53 ms
75,308 KB
testcase_34 AC 74 ms
98,832 KB
testcase_35 AC 58 ms
81,420 KB
testcase_36 AC 73 ms
97,920 KB
testcase_37 AC 80 ms
101,704 KB
testcase_38 AC 44 ms
66,224 KB
testcase_39 AC 64 ms
85,796 KB
testcase_40 AC 72 ms
92,648 KB
testcase_41 AC 43 ms
60,584 KB
testcase_42 AC 44 ms
64,912 KB
testcase_43 AC 36 ms
52,076 KB
testcase_44 AC 37 ms
51,984 KB
testcase_45 AC 37 ms
53,428 KB
testcase_46 AC 35 ms
52,340 KB
testcase_47 AC 36 ms
52,272 KB
testcase_48 AC 36 ms
52,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = list(map(int, input().split()))
S = [0]
for a in A:
    S.append(S[-1]^a)
X = set()
for s in S:
    if (s^K) in X:
        print("Yes")
        exit()
    X.add(s)
print("No")
0