結果

問題 No.1456 Range Xor
ユーザー dachengzdachengz
提出日時 2023-01-26 10:46:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 189 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 89,544 KB
最終ジャッジ日時 2024-06-27 06:54:58
合計ジャッジ時間 4,341 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,164 KB
testcase_01 AC 37 ms
53,404 KB
testcase_02 AC 37 ms
53,244 KB
testcase_03 AC 57 ms
79,124 KB
testcase_04 AC 59 ms
79,740 KB
testcase_05 AC 67 ms
86,064 KB
testcase_06 AC 58 ms
78,764 KB
testcase_07 AC 69 ms
88,572 KB
testcase_08 AC 63 ms
84,116 KB
testcase_09 AC 57 ms
78,992 KB
testcase_10 AC 59 ms
81,752 KB
testcase_11 AC 46 ms
66,236 KB
testcase_12 AC 42 ms
62,040 KB
testcase_13 AC 50 ms
69,948 KB
testcase_14 AC 47 ms
66,056 KB
testcase_15 AC 53 ms
75,468 KB
testcase_16 AC 58 ms
77,548 KB
testcase_17 AC 54 ms
73,924 KB
testcase_18 AC 45 ms
65,144 KB
testcase_19 AC 57 ms
76,940 KB
testcase_20 AC 58 ms
77,612 KB
testcase_21 AC 53 ms
72,236 KB
testcase_22 AC 52 ms
71,572 KB
testcase_23 AC 50 ms
68,184 KB
testcase_24 AC 44 ms
64,204 KB
testcase_25 AC 49 ms
67,936 KB
testcase_26 AC 57 ms
75,412 KB
testcase_27 AC 56 ms
75,304 KB
testcase_28 AC 47 ms
67,504 KB
testcase_29 AC 69 ms
89,544 KB
testcase_30 AC 60 ms
80,952 KB
testcase_31 AC 47 ms
66,116 KB
testcase_32 AC 46 ms
65,012 KB
testcase_33 AC 51 ms
69,960 KB
testcase_34 AC 64 ms
84,424 KB
testcase_35 AC 53 ms
73,128 KB
testcase_36 AC 60 ms
82,236 KB
testcase_37 AC 71 ms
87,572 KB
testcase_38 AC 45 ms
63,896 KB
testcase_39 AC 54 ms
74,092 KB
testcase_40 AC 62 ms
81,604 KB
testcase_41 AC 39 ms
59,492 KB
testcase_42 AC 42 ms
63,444 KB
testcase_43 AC 37 ms
52,332 KB
testcase_44 AC 35 ms
52,336 KB
testcase_45 AC 36 ms
53,212 KB
testcase_46 AC 35 ms
52,052 KB
testcase_47 AC 36 ms
52,708 KB
testcase_48 AC 36 ms
53,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = map(int, input().split())
seen = {0}
b = 0
for a in A:
    b ^= a
    if b ^ K in seen:
        print("Yes")
        exit()
    seen.add(b)
print("No")
0