結果

問題 No.1456 Range Xor
ユーザー brthyyjpbrthyyjp
提出日時 2021-04-01 14:45:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 232 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 96,640 KB
最終ジャッジ日時 2024-05-10 00:02:36
合計ジャッジ時間 5,092 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 38 ms
51,584 KB
testcase_03 AC 67 ms
86,400 KB
testcase_04 AC 68 ms
88,064 KB
testcase_05 AC 83 ms
94,592 KB
testcase_06 AC 67 ms
86,488 KB
testcase_07 AC 84 ms
96,640 KB
testcase_08 AC 79 ms
92,672 KB
testcase_09 AC 74 ms
87,040 KB
testcase_10 AC 76 ms
88,860 KB
testcase_11 AC 55 ms
66,304 KB
testcase_12 AC 49 ms
62,080 KB
testcase_13 AC 58 ms
71,424 KB
testcase_14 AC 55 ms
68,736 KB
testcase_15 AC 69 ms
81,920 KB
testcase_16 AC 72 ms
83,456 KB
testcase_17 AC 59 ms
76,544 KB
testcase_18 AC 50 ms
67,968 KB
testcase_19 AC 63 ms
81,024 KB
testcase_20 AC 65 ms
83,968 KB
testcase_21 AC 66 ms
77,952 KB
testcase_22 AC 65 ms
76,416 KB
testcase_23 AC 60 ms
71,680 KB
testcase_24 AC 53 ms
65,024 KB
testcase_25 AC 59 ms
70,272 KB
testcase_26 AC 68 ms
79,360 KB
testcase_27 AC 63 ms
81,920 KB
testcase_28 AC 56 ms
68,608 KB
testcase_29 AC 86 ms
95,488 KB
testcase_30 AC 77 ms
89,428 KB
testcase_31 AC 55 ms
67,840 KB
testcase_32 AC 54 ms
67,200 KB
testcase_33 AC 61 ms
72,704 KB
testcase_34 AC 81 ms
91,776 KB
testcase_35 AC 60 ms
76,968 KB
testcase_36 AC 71 ms
89,472 KB
testcase_37 AC 83 ms
94,976 KB
testcase_38 AC 48 ms
65,408 KB
testcase_39 AC 68 ms
80,000 KB
testcase_40 AC 79 ms
86,912 KB
testcase_41 AC 46 ms
60,288 KB
testcase_42 AC 46 ms
63,616 KB
testcase_43 AC 37 ms
51,584 KB
testcase_44 AC 38 ms
51,584 KB
testcase_45 AC 36 ms
51,968 KB
testcase_46 AC 38 ms
51,712 KB
testcase_47 AC 37 ms
51,840 KB
testcase_48 AC 38 ms
52,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
A = list(map(int, input().split()))
C = [0]*(n+1)
for i in range(1, n+1):
    C[i] = C[i-1]^A[i-1]
S = set()
for c in C:
    if c^k in S:
        print('Yes')
        exit()
    S.add(c)
print('No')
0