結果

問題 No.1456 Range Xor
ユーザー kept1994kept1994
提出日時 2021-08-28 03:10:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 350 bytes
コンパイル時間 383 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 122,240 KB
最終ジャッジ日時 2024-05-01 08:19:03
合計ジャッジ時間 5,488 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 36 ms
52,096 KB
testcase_03 AC 109 ms
122,240 KB
testcase_04 AC 106 ms
121,984 KB
testcase_05 AC 110 ms
122,112 KB
testcase_06 AC 108 ms
122,112 KB
testcase_07 AC 104 ms
121,600 KB
testcase_08 AC 105 ms
122,112 KB
testcase_09 AC 108 ms
121,856 KB
testcase_10 AC 105 ms
122,112 KB
testcase_11 AC 51 ms
70,144 KB
testcase_12 AC 45 ms
63,872 KB
testcase_13 AC 58 ms
77,568 KB
testcase_14 AC 57 ms
78,080 KB
testcase_15 AC 93 ms
113,408 KB
testcase_16 AC 90 ms
108,544 KB
testcase_17 AC 66 ms
85,760 KB
testcase_18 AC 57 ms
77,824 KB
testcase_19 AC 80 ms
98,560 KB
testcase_20 AC 90 ms
108,544 KB
testcase_21 AC 79 ms
98,944 KB
testcase_22 AC 80 ms
98,688 KB
testcase_23 AC 62 ms
80,128 KB
testcase_24 AC 48 ms
68,096 KB
testcase_25 AC 55 ms
76,160 KB
testcase_26 AC 69 ms
91,008 KB
testcase_27 AC 82 ms
103,296 KB
testcase_28 AC 60 ms
73,984 KB
testcase_29 AC 98 ms
114,688 KB
testcase_30 AC 101 ms
120,832 KB
testcase_31 AC 52 ms
72,400 KB
testcase_32 AC 50 ms
70,656 KB
testcase_33 AC 62 ms
82,816 KB
testcase_34 AC 101 ms
120,100 KB
testcase_35 AC 71 ms
90,880 KB
testcase_36 AC 104 ms
121,856 KB
testcase_37 AC 95 ms
114,560 KB
testcase_38 AC 48 ms
68,096 KB
testcase_39 AC 85 ms
103,808 KB
testcase_40 AC 86 ms
104,192 KB
testcase_41 AC 43 ms
60,160 KB
testcase_42 AC 46 ms
65,536 KB
testcase_43 AC 37 ms
52,328 KB
testcase_44 AC 37 ms
51,840 KB
testcase_45 AC 37 ms
51,712 KB
testcase_46 AC 38 ms
52,096 KB
testcase_47 AC 38 ms
52,192 KB
testcase_48 AC 41 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys


def main():
    N, K = map(int, input().split())
    A = list(map(int, input().split()))
    xorA = [0]
    for aa in A:
        xorA.append(xorA[-1] ^ aa)
    xorK = set()
    for aa in xorA:
        xorK.add(aa ^ K)
    print("Yes" if set(xorA) & xorK else "No")
    return

if __name__ == '__main__':
    main()
0