結果

問題 No.1456 Range Xor
ユーザー gorugo30gorugo30
提出日時 2021-05-08 16:25:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 257 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 96,796 KB
最終ジャッジ日時 2024-09-16 21:24:53
合計ジャッジ時間 4,872 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,732 KB
testcase_01 AC 38 ms
52,468 KB
testcase_02 AC 37 ms
52,404 KB
testcase_03 AC 65 ms
86,856 KB
testcase_04 AC 69 ms
88,752 KB
testcase_05 AC 73 ms
94,828 KB
testcase_06 AC 65 ms
86,432 KB
testcase_07 AC 77 ms
96,796 KB
testcase_08 AC 73 ms
92,444 KB
testcase_09 AC 67 ms
88,928 KB
testcase_10 AC 69 ms
89,928 KB
testcase_11 AC 47 ms
67,436 KB
testcase_12 AC 44 ms
62,944 KB
testcase_13 AC 53 ms
72,540 KB
testcase_14 AC 50 ms
70,196 KB
testcase_15 AC 62 ms
81,868 KB
testcase_16 AC 64 ms
85,092 KB
testcase_17 AC 58 ms
76,788 KB
testcase_18 AC 49 ms
69,008 KB
testcase_19 AC 63 ms
81,504 KB
testcase_20 AC 65 ms
84,796 KB
testcase_21 AC 59 ms
79,472 KB
testcase_22 AC 57 ms
77,608 KB
testcase_23 AC 54 ms
73,132 KB
testcase_24 AC 46 ms
66,156 KB
testcase_25 AC 51 ms
70,076 KB
testcase_26 AC 61 ms
80,296 KB
testcase_27 AC 63 ms
82,452 KB
testcase_28 AC 50 ms
70,320 KB
testcase_29 AC 76 ms
95,372 KB
testcase_30 AC 70 ms
90,508 KB
testcase_31 AC 49 ms
68,768 KB
testcase_32 AC 49 ms
67,432 KB
testcase_33 AC 54 ms
74,320 KB
testcase_34 AC 71 ms
92,296 KB
testcase_35 AC 58 ms
77,548 KB
testcase_36 AC 71 ms
91,432 KB
testcase_37 AC 76 ms
95,756 KB
testcase_38 AC 47 ms
65,644 KB
testcase_39 AC 61 ms
80,376 KB
testcase_40 AC 68 ms
86,976 KB
testcase_41 AC 43 ms
60,840 KB
testcase_42 AC 46 ms
64,580 KB
testcase_43 AC 37 ms
53,412 KB
testcase_44 AC 36 ms
52,420 KB
testcase_45 AC 37 ms
52,012 KB
testcase_46 AC 37 ms
53,552 KB
testcase_47 AC 37 ms
52,820 KB
testcase_48 AC 38 ms
53,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = list(map(int, input().split()))
C = [0] * (N + 1)
for i in range(N):
    C[i + 1] = C[i] ^ A[i]
app = set()
for i in range(N + 1):
    app.add(C[i])
    if K ^ C[i] in app:
        print("Yes")
        exit()
print("No")
0