結果

問題 No.1456 Range Xor
ユーザー convexineqconvexineq
提出日時 2021-04-01 11:06:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 202 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 99,840 KB
最終ジャッジ日時 2024-05-09 21:15:34
合計ジャッジ時間 6,321 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 41 ms
51,584 KB
testcase_03 AC 85 ms
89,216 KB
testcase_04 AC 84 ms
90,880 KB
testcase_05 AC 100 ms
97,152 KB
testcase_06 AC 91 ms
89,344 KB
testcase_07 AC 105 ms
99,840 KB
testcase_08 AC 98 ms
95,488 KB
testcase_09 AC 92 ms
89,856 KB
testcase_10 AC 93 ms
92,032 KB
testcase_11 AC 65 ms
66,688 KB
testcase_12 AC 56 ms
62,080 KB
testcase_13 AC 67 ms
72,320 KB
testcase_14 AC 68 ms
69,632 KB
testcase_15 AC 80 ms
84,352 KB
testcase_16 AC 87 ms
85,888 KB
testcase_17 AC 79 ms
77,568 KB
testcase_18 AC 67 ms
68,352 KB
testcase_19 AC 83 ms
82,560 KB
testcase_20 AC 89 ms
86,528 KB
testcase_21 AC 80 ms
79,872 KB
testcase_22 AC 76 ms
78,208 KB
testcase_23 AC 67 ms
72,704 KB
testcase_24 AC 60 ms
65,152 KB
testcase_25 AC 70 ms
70,784 KB
testcase_26 AC 82 ms
80,896 KB
testcase_27 AC 85 ms
83,584 KB
testcase_28 AC 69 ms
69,248 KB
testcase_29 AC 104 ms
98,048 KB
testcase_30 AC 90 ms
91,904 KB
testcase_31 AC 64 ms
68,480 KB
testcase_32 AC 65 ms
67,072 KB
testcase_33 AC 74 ms
73,984 KB
testcase_34 AC 93 ms
94,720 KB
testcase_35 AC 78 ms
77,952 KB
testcase_36 AC 95 ms
92,928 KB
testcase_37 AC 103 ms
97,664 KB
testcase_38 AC 64 ms
65,536 KB
testcase_39 AC 78 ms
81,792 KB
testcase_40 AC 89 ms
88,960 KB
testcase_41 AC 53 ms
59,520 KB
testcase_42 AC 61 ms
63,872 KB
testcase_43 AC 46 ms
51,456 KB
testcase_44 AC 49 ms
51,456 KB
testcase_45 AC 46 ms
51,456 KB
testcase_46 AC 47 ms
51,456 KB
testcase_47 AC 49 ms
51,712 KB
testcase_48 AC 48 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
*a, = map(int,input().split())
for i in range(1,n):
    a[i] ^= a[i-1]
d = {0}
for ai in a:
    if ai^k in d:
        print("Yes")
        exit()
    d.add(ai)
print("No")
0