結果

問題 No.1456 Range Xor
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-03-31 22:29:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 196 bytes
コンパイル時間 420 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 95,744 KB
最終ジャッジ日時 2024-05-09 08:47:32
合計ジャッジ時間 4,997 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 65 ms
85,248 KB
testcase_04 AC 67 ms
87,040 KB
testcase_05 AC 76 ms
93,808 KB
testcase_06 AC 65 ms
85,632 KB
testcase_07 AC 78 ms
95,744 KB
testcase_08 AC 73 ms
91,648 KB
testcase_09 AC 65 ms
86,272 KB
testcase_10 AC 67 ms
87,808 KB
testcase_11 AC 47 ms
66,176 KB
testcase_12 AC 43 ms
61,568 KB
testcase_13 AC 52 ms
71,040 KB
testcase_14 AC 48 ms
68,352 KB
testcase_15 AC 60 ms
80,984 KB
testcase_16 AC 63 ms
82,688 KB
testcase_17 AC 57 ms
75,776 KB
testcase_18 AC 47 ms
67,304 KB
testcase_19 AC 61 ms
80,640 KB
testcase_20 AC 68 ms
83,968 KB
testcase_21 AC 58 ms
77,440 KB
testcase_22 AC 56 ms
76,288 KB
testcase_23 AC 52 ms
71,168 KB
testcase_24 AC 45 ms
65,024 KB
testcase_25 AC 52 ms
70,016 KB
testcase_26 AC 61 ms
79,104 KB
testcase_27 AC 62 ms
81,024 KB
testcase_28 AC 49 ms
68,352 KB
testcase_29 AC 78 ms
94,848 KB
testcase_30 AC 69 ms
88,448 KB
testcase_31 AC 48 ms
67,328 KB
testcase_32 AC 47 ms
66,816 KB
testcase_33 AC 53 ms
72,832 KB
testcase_34 AC 73 ms
91,264 KB
testcase_35 AC 57 ms
75,904 KB
testcase_36 AC 69 ms
89,088 KB
testcase_37 AC 77 ms
94,208 KB
testcase_38 AC 46 ms
65,280 KB
testcase_39 AC 60 ms
79,488 KB
testcase_40 AC 70 ms
86,528 KB
testcase_41 AC 43 ms
59,648 KB
testcase_42 AC 43 ms
63,232 KB
testcase_43 AC 37 ms
51,968 KB
testcase_44 AC 36 ms
51,968 KB
testcase_45 AC 38 ms
52,096 KB
testcase_46 AC 37 ms
51,968 KB
testcase_47 AC 37 ms
52,224 KB
testcase_48 AC 37 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
dic = {0:1}
now = 0
A = list(map(int,input().split()))
for a in A:
    now ^= a
    if now^k in dic:
        print("Yes")
        exit()
    dic[now] = 1
print("No")
0