結果

問題 No.1456 Range Xor
ユーザー 👑 KazunKazun
提出日時 2021-07-01 02:01:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 178 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 96,700 KB
最終ジャッジ日時 2024-06-27 11:44:26
合計ジャッジ時間 5,564 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,016 KB
testcase_01 AC 38 ms
52,436 KB
testcase_02 AC 38 ms
52,628 KB
testcase_03 AC 65 ms
86,124 KB
testcase_04 AC 67 ms
87,868 KB
testcase_05 AC 74 ms
93,752 KB
testcase_06 AC 66 ms
85,176 KB
testcase_07 AC 77 ms
96,700 KB
testcase_08 AC 72 ms
92,120 KB
testcase_09 AC 67 ms
86,468 KB
testcase_10 AC 69 ms
87,832 KB
testcase_11 AC 47 ms
66,740 KB
testcase_12 AC 44 ms
62,628 KB
testcase_13 AC 54 ms
70,848 KB
testcase_14 AC 50 ms
68,512 KB
testcase_15 AC 61 ms
81,364 KB
testcase_16 AC 63 ms
83,420 KB
testcase_17 AC 56 ms
76,464 KB
testcase_18 AC 48 ms
67,336 KB
testcase_19 AC 60 ms
81,872 KB
testcase_20 AC 64 ms
83,316 KB
testcase_21 AC 58 ms
77,748 KB
testcase_22 AC 55 ms
76,048 KB
testcase_23 AC 52 ms
71,796 KB
testcase_24 AC 47 ms
65,820 KB
testcase_25 AC 51 ms
70,720 KB
testcase_26 AC 60 ms
79,280 KB
testcase_27 AC 61 ms
81,296 KB
testcase_28 AC 50 ms
69,148 KB
testcase_29 AC 76 ms
94,572 KB
testcase_30 AC 68 ms
88,888 KB
testcase_31 AC 48 ms
67,628 KB
testcase_32 AC 48 ms
66,732 KB
testcase_33 AC 52 ms
72,628 KB
testcase_34 AC 70 ms
90,948 KB
testcase_35 AC 56 ms
76,436 KB
testcase_36 AC 68 ms
89,884 KB
testcase_37 AC 75 ms
94,496 KB
testcase_38 AC 46 ms
64,968 KB
testcase_39 AC 59 ms
80,376 KB
testcase_40 AC 67 ms
86,948 KB
testcase_41 AC 43 ms
59,216 KB
testcase_42 AC 44 ms
64,116 KB
testcase_43 AC 38 ms
53,300 KB
testcase_44 AC 37 ms
52,704 KB
testcase_45 AC 37 ms
51,752 KB
testcase_46 AC 37 ms
52,800 KB
testcase_47 AC 38 ms
52,440 KB
testcase_48 AC 37 ms
51,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
A=list(map(int,input().split()))

S={0}
X=0
for a in A:
    X^=a
    if X^K in S:
        exit(print("Yes"))
    else:
        S.add(X)

print("No")
0