結果

問題 No.1456 Range Xor
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-03-31 21:39:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 249 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 25,588 KB
最終ジャッジ日時 2024-05-09 06:03:14
合計ジャッジ時間 5,770 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 30 ms
10,624 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 47 ms
13,652 KB
testcase_12 AC 38 ms
12,288 KB
testcase_13 AC 62 ms
17,212 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 72 ms
17,212 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 45 ms
12,672 KB
testcase_25 AC 58 ms
16,512 KB
testcase_26 AC 77 ms
18,136 KB
testcase_27 WA -
testcase_28 AC 55 ms
15,900 KB
testcase_29 AC 121 ms
24,512 KB
testcase_30 WA -
testcase_31 AC 54 ms
15,956 KB
testcase_32 AC 48 ms
13,568 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 116 ms
24,248 KB
testcase_38 AC 44 ms
13,056 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 32 ms
10,880 KB
testcase_42 AC 40 ms
12,544 KB
testcase_43 WA -
testcase_44 AC 31 ms
10,752 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 AC 31 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
a = list(map(int, input().split()))
a2 = [a[0]]
for i in range(1, n):
    a2.append(a2[-1] ^ a[i])
s = set(a2)
for i in a2:
    if k ^ i in s:
        print(i)
        print("Yes")
        break
else:
    print("No")
0