結果

問題 No.1456 Range Xor
ユーザー brthyyjpbrthyyjp
提出日時 2021-04-01 14:45:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 232 bytes
コンパイル時間 400 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 97,500 KB
最終ジャッジ日時 2024-12-17 18:51:01
合計ジャッジ時間 4,811 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,672 KB
testcase_01 AC 37 ms
52,000 KB
testcase_02 AC 35 ms
53,148 KB
testcase_03 AC 67 ms
87,232 KB
testcase_04 AC 66 ms
88,560 KB
testcase_05 AC 73 ms
95,880 KB
testcase_06 AC 64 ms
86,284 KB
testcase_07 AC 76 ms
97,500 KB
testcase_08 AC 70 ms
92,956 KB
testcase_09 AC 66 ms
87,720 KB
testcase_10 AC 66 ms
89,448 KB
testcase_11 AC 48 ms
67,332 KB
testcase_12 AC 43 ms
63,148 KB
testcase_13 AC 54 ms
72,584 KB
testcase_14 AC 48 ms
70,048 KB
testcase_15 AC 61 ms
82,412 KB
testcase_16 AC 65 ms
85,208 KB
testcase_17 AC 59 ms
77,848 KB
testcase_18 AC 49 ms
68,740 KB
testcase_19 AC 61 ms
82,372 KB
testcase_20 AC 65 ms
85,052 KB
testcase_21 AC 59 ms
78,416 KB
testcase_22 AC 57 ms
77,232 KB
testcase_23 AC 53 ms
73,304 KB
testcase_24 AC 44 ms
65,336 KB
testcase_25 AC 49 ms
70,684 KB
testcase_26 AC 61 ms
79,904 KB
testcase_27 AC 63 ms
82,468 KB
testcase_28 AC 51 ms
69,508 KB
testcase_29 AC 77 ms
96,456 KB
testcase_30 AC 69 ms
90,232 KB
testcase_31 AC 49 ms
69,492 KB
testcase_32 AC 48 ms
67,708 KB
testcase_33 AC 54 ms
73,968 KB
testcase_34 AC 75 ms
93,616 KB
testcase_35 AC 57 ms
76,752 KB
testcase_36 AC 71 ms
90,248 KB
testcase_37 AC 77 ms
95,096 KB
testcase_38 AC 46 ms
65,824 KB
testcase_39 AC 61 ms
80,056 KB
testcase_40 AC 70 ms
87,876 KB
testcase_41 AC 44 ms
60,752 KB
testcase_42 AC 46 ms
63,984 KB
testcase_43 AC 37 ms
52,640 KB
testcase_44 AC 36 ms
52,556 KB
testcase_45 AC 37 ms
52,552 KB
testcase_46 AC 37 ms
52,836 KB
testcase_47 AC 37 ms
52,672 KB
testcase_48 AC 37 ms
52,524 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