結果

問題 No.1456 Range Xor
ユーザー netyo715netyo715
提出日時 2021-03-31 21:23:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 306 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 24,460 KB
最終ジャッジ日時 2024-12-15 14:38:07
合計ジャッジ時間 4,892 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 25 ms
10,880 KB
testcase_03 AC 84 ms
21,628 KB
testcase_04 AC 91 ms
21,628 KB
testcase_05 AC 103 ms
21,628 KB
testcase_06 AC 84 ms
21,632 KB
testcase_07 AC 109 ms
21,636 KB
testcase_08 AC 100 ms
21,636 KB
testcase_09 AC 86 ms
21,636 KB
testcase_10 AC 94 ms
21,632 KB
testcase_11 AC 42 ms
13,664 KB
testcase_12 AC 32 ms
12,288 KB
testcase_13 AC 58 ms
17,212 KB
testcase_14 AC 49 ms
15,108 KB
testcase_15 AC 75 ms
19,704 KB
testcase_16 AC 80 ms
19,388 KB
testcase_17 AC 66 ms
17,348 KB
testcase_18 AC 43 ms
15,188 KB
testcase_19 AC 78 ms
18,692 KB
testcase_20 AC 81 ms
19,272 KB
testcase_21 AC 68 ms
18,764 KB
testcase_22 AC 62 ms
17,568 KB
testcase_23 AC 60 ms
17,280 KB
testcase_24 AC 43 ms
13,056 KB
testcase_25 AC 57 ms
16,640 KB
testcase_26 AC 85 ms
18,144 KB
testcase_27 AC 87 ms
18,932 KB
testcase_28 AC 53 ms
16,288 KB
testcase_29 AC 129 ms
24,460 KB
testcase_30 AC 102 ms
21,100 KB
testcase_31 AC 55 ms
15,976 KB
testcase_32 AC 48 ms
13,696 KB
testcase_33 AC 61 ms
17,296 KB
testcase_34 AC 102 ms
21,036 KB
testcase_35 AC 67 ms
18,564 KB
testcase_36 AC 97 ms
21,488 KB
testcase_37 AC 113 ms
24,136 KB
testcase_38 AC 39 ms
13,056 KB
testcase_39 AC 72 ms
18,740 KB
testcase_40 AC 90 ms
19,068 KB
testcase_41 AC 29 ms
11,008 KB
testcase_42 AC 37 ms
12,544 KB
testcase_43 AC 26 ms
10,752 KB
testcase_44 AC 27 ms
10,752 KB
testcase_45 AC 26 ms
10,752 KB
testcase_46 AC 25 ms
10,752 KB
testcase_47 AC 25 ms
10,752 KB
testcase_48 AC 25 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = list(map(int, input().split()))

b = [A[0]]
for i in range(1, N):
    b.append(b[-1]^A[i])

s = set()
for i in range(N):
    if b[i] == K:
        print("Yes")
        exit()
    if K^b[i] in s:
        print("Yes")
        exit()
    s.add(b[i])

else:
    print("No")
0