結果

問題 No.1456 Range Xor
ユーザー NaHCO314NaHCO314
提出日時 2021-03-31 20:35:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 303 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,480 KB
実行使用メモリ 99,120 KB
最終ジャッジ日時 2024-12-15 07:59:17
合計ジャッジ時間 4,464 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,552 KB
testcase_01 AC 36 ms
53,212 KB
testcase_02 AC 36 ms
53,016 KB
testcase_03 AC 68 ms
88,940 KB
testcase_04 AC 69 ms
90,108 KB
testcase_05 AC 76 ms
96,044 KB
testcase_06 AC 68 ms
87,728 KB
testcase_07 AC 79 ms
99,120 KB
testcase_08 AC 75 ms
94,700 KB
testcase_09 AC 68 ms
89,704 KB
testcase_10 AC 70 ms
90,716 KB
testcase_11 AC 48 ms
68,440 KB
testcase_12 AC 44 ms
63,064 KB
testcase_13 AC 53 ms
73,052 KB
testcase_14 AC 52 ms
69,796 KB
testcase_15 AC 64 ms
83,884 KB
testcase_16 AC 65 ms
86,352 KB
testcase_17 AC 57 ms
77,320 KB
testcase_18 AC 48 ms
70,284 KB
testcase_19 AC 63 ms
82,584 KB
testcase_20 AC 65 ms
85,480 KB
testcase_21 AC 58 ms
79,340 KB
testcase_22 AC 57 ms
78,572 KB
testcase_23 AC 53 ms
72,384 KB
testcase_24 AC 45 ms
67,436 KB
testcase_25 AC 50 ms
70,680 KB
testcase_26 AC 59 ms
80,520 KB
testcase_27 AC 61 ms
82,484 KB
testcase_28 AC 51 ms
69,700 KB
testcase_29 AC 79 ms
97,040 KB
testcase_30 AC 74 ms
91,408 KB
testcase_31 AC 48 ms
69,016 KB
testcase_32 AC 47 ms
68,084 KB
testcase_33 AC 55 ms
74,112 KB
testcase_34 AC 73 ms
94,228 KB
testcase_35 AC 60 ms
79,156 KB
testcase_36 AC 71 ms
91,680 KB
testcase_37 AC 75 ms
97,532 KB
testcase_38 AC 45 ms
65,368 KB
testcase_39 AC 59 ms
82,416 KB
testcase_40 AC 68 ms
89,180 KB
testcase_41 AC 42 ms
60,108 KB
testcase_42 AC 44 ms
64,504 KB
testcase_43 AC 36 ms
53,072 KB
testcase_44 AC 36 ms
52,808 KB
testcase_45 AC 37 ms
52,808 KB
testcase_46 AC 36 ms
53,936 KB
testcase_47 AC 36 ms
52,208 KB
testcase_48 AC 35 ms
53,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k, *a = map(int, open(0).read().split())
if (not 1 <= n <= 10**5) or (not 0 <= k <= 10**9) or (not all(map(lambda x: 0<=x<=10**9, a))) or (len(a) != n):
    raise ValueError
b = {k}
x = 0
for i in a:
    x ^= i
    if x in b:
        print("Yes")
        break
    b.add(x ^ k)
else:
    print("No")
0