結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,952 KB
testcase_01 AC 36 ms
51,872 KB
testcase_02 AC 35 ms
53,092 KB
testcase_03 AC 71 ms
93,160 KB
testcase_04 AC 68 ms
95,792 KB
testcase_05 AC 75 ms
101,960 KB
testcase_06 AC 70 ms
92,992 KB
testcase_07 AC 80 ms
104,464 KB
testcase_08 AC 77 ms
99,672 KB
testcase_09 AC 69 ms
93,392 KB
testcase_10 AC 70 ms
96,128 KB
testcase_11 AC 47 ms
67,752 KB
testcase_12 AC 42 ms
63,248 KB
testcase_13 AC 51 ms
73,600 KB
testcase_14 AC 48 ms
71,672 KB
testcase_15 AC 62 ms
87,888 KB
testcase_16 AC 64 ms
89,016 KB
testcase_17 AC 57 ms
79,760 KB
testcase_18 AC 48 ms
70,352 KB
testcase_19 AC 62 ms
86,208 KB
testcase_20 AC 67 ms
90,436 KB
testcase_21 AC 61 ms
82,952 KB
testcase_22 AC 58 ms
81,376 KB
testcase_23 AC 52 ms
75,000 KB
testcase_24 AC 46 ms
66,552 KB
testcase_25 AC 52 ms
72,256 KB
testcase_26 AC 61 ms
83,844 KB
testcase_27 AC 64 ms
87,912 KB
testcase_28 AC 51 ms
72,020 KB
testcase_29 AC 79 ms
101,852 KB
testcase_30 AC 72 ms
95,676 KB
testcase_31 AC 50 ms
69,760 KB
testcase_32 AC 48 ms
68,496 KB
testcase_33 AC 55 ms
75,444 KB
testcase_34 AC 74 ms
98,472 KB
testcase_35 AC 59 ms
80,924 KB
testcase_36 AC 73 ms
96,756 KB
testcase_37 AC 78 ms
101,060 KB
testcase_38 AC 45 ms
67,028 KB
testcase_39 AC 62 ms
85,732 KB
testcase_40 AC 72 ms
92,356 KB
testcase_41 AC 44 ms
60,252 KB
testcase_42 AC 45 ms
65,484 KB
testcase_43 AC 35 ms
52,440 KB
testcase_44 AC 35 ms
52,696 KB
testcase_45 AC 35 ms
51,832 KB
testcase_46 AC 35 ms
52,124 KB
testcase_47 AC 37 ms
51,760 KB
testcase_48 AC 36 ms
52,748 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