結果

問題 No.1456 Range Xor
ユーザー kept1994kept1994
提出日時 2021-08-28 03:06:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 375 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 121,856 KB
最終ジャッジ日時 2024-11-21 11:16:39
合計ジャッジ時間 6,470 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
51,584 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 37 ms
51,456 KB
testcase_03 AC 100 ms
121,344 KB
testcase_04 AC 102 ms
121,344 KB
testcase_05 AC 101 ms
121,856 KB
testcase_06 AC 101 ms
121,344 KB
testcase_07 AC 103 ms
121,788 KB
testcase_08 AC 103 ms
121,216 KB
testcase_09 AC 105 ms
121,728 KB
testcase_10 AC 102 ms
121,772 KB
testcase_11 AC 52 ms
69,760 KB
testcase_12 AC 45 ms
62,848 KB
testcase_13 AC 59 ms
77,312 KB
testcase_14 AC 60 ms
77,312 KB
testcase_15 AC 99 ms
113,024 KB
testcase_16 AC 93 ms
108,544 KB
testcase_17 AC 76 ms
84,992 KB
testcase_18 AC 60 ms
77,056 KB
testcase_19 AC 82 ms
98,176 KB
testcase_20 AC 87 ms
108,032 KB
testcase_21 AC 81 ms
98,560 KB
testcase_22 AC 82 ms
98,944 KB
testcase_23 AC 63 ms
80,128 KB
testcase_24 AC 47 ms
67,584 KB
testcase_25 AC 53 ms
75,776 KB
testcase_26 AC 69 ms
90,112 KB
testcase_27 AC 80 ms
103,040 KB
testcase_28 AC 53 ms
73,472 KB
testcase_29 AC 98 ms
115,200 KB
testcase_30 AC 98 ms
120,576 KB
testcase_31 AC 50 ms
71,680 KB
testcase_32 AC 52 ms
70,656 KB
testcase_33 AC 64 ms
82,560 KB
testcase_34 AC 103 ms
120,192 KB
testcase_35 AC 73 ms
90,752 KB
testcase_36 AC 107 ms
121,216 KB
testcase_37 AC 100 ms
114,048 KB
testcase_38 AC 51 ms
67,840 KB
testcase_39 AC 90 ms
104,320 KB
testcase_40 AC 88 ms
103,424 KB
testcase_41 AC 45 ms
59,520 KB
testcase_42 AC 47 ms
65,280 KB
testcase_43 WA -
testcase_44 AC 38 ms
51,712 KB
testcase_45 AC 42 ms
51,840 KB
testcase_46 AC 42 ms
52,096 KB
testcase_47 WA -
testcase_48 AC 48 ms
51,456 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)
    xorA.pop(0)
    xorK = set()
    for aa in xorA:
        xorK.add(aa ^ K)
    print("Yes" if set(xorA) & xorK else "No")
        
    return

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