結果

問題 No.1456 Range Xor
ユーザー O2MTO2MT
提出日時 2021-12-30 23:08:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 199 bytes
コンパイル時間 390 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 95,872 KB
最終ジャッジ日時 2024-10-07 01:22:53
合計ジャッジ時間 5,334 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 39 ms
51,584 KB
testcase_03 AC 65 ms
84,736 KB
testcase_04 AC 65 ms
87,168 KB
testcase_05 AC 74 ms
93,440 KB
testcase_06 AC 65 ms
85,632 KB
testcase_07 AC 79 ms
95,872 KB
testcase_08 AC 73 ms
91,264 KB
testcase_09 AC 66 ms
86,016 KB
testcase_10 AC 67 ms
87,680 KB
testcase_11 AC 48 ms
65,920 KB
testcase_12 AC 43 ms
61,696 KB
testcase_13 AC 53 ms
71,168 KB
testcase_14 AC 50 ms
68,480 KB
testcase_15 AC 62 ms
81,024 KB
testcase_16 AC 65 ms
82,432 KB
testcase_17 AC 58 ms
75,520 KB
testcase_18 AC 49 ms
67,200 KB
testcase_19 AC 61 ms
80,384 KB
testcase_20 AC 65 ms
83,328 KB
testcase_21 AC 59 ms
77,184 KB
testcase_22 AC 57 ms
75,904 KB
testcase_23 AC 53 ms
71,040 KB
testcase_24 AC 45 ms
64,512 KB
testcase_25 AC 51 ms
69,888 KB
testcase_26 AC 61 ms
78,720 KB
testcase_27 AC 62 ms
80,896 KB
testcase_28 AC 50 ms
68,096 KB
testcase_29 AC 77 ms
94,464 KB
testcase_30 AC 68 ms
88,448 KB
testcase_31 AC 50 ms
67,584 KB
testcase_32 AC 50 ms
66,048 KB
testcase_33 AC 55 ms
72,064 KB
testcase_34 AC 75 ms
90,368 KB
testcase_35 AC 60 ms
76,288 KB
testcase_36 AC 71 ms
89,088 KB
testcase_37 AC 78 ms
94,080 KB
testcase_38 AC 47 ms
65,024 KB
testcase_39 AC 61 ms
78,592 KB
testcase_40 AC 68 ms
85,888 KB
testcase_41 AC 43 ms
59,136 KB
testcase_42 AC 45 ms
62,848 KB
testcase_43 WA -
testcase_44 AC 37 ms
51,584 KB
testcase_45 WA -
testcase_46 AC 37 ms
51,840 KB
testcase_47 WA -
testcase_48 AC 36 ms
51,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
A = list(map(int,input().split()))
D = {}
num = 0
ans = 'No'
for a in A:
    num ^= a
    if K^num in D:
        ans = 'Yes'
        break
    D[num] = True

print(ans)
0