結果

問題 No.1456 Range Xor
ユーザー kept1994kept1994
提出日時 2021-08-28 03:10:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 350 bytes
コンパイル時間 768 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 123,336 KB
最終ジャッジ日時 2024-11-21 11:22:08
合計ジャッジ時間 6,002 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,020 KB
testcase_01 AC 38 ms
52,616 KB
testcase_02 AC 38 ms
53,144 KB
testcase_03 AC 104 ms
122,396 KB
testcase_04 AC 103 ms
121,892 KB
testcase_05 AC 109 ms
122,400 KB
testcase_06 AC 104 ms
123,336 KB
testcase_07 AC 104 ms
122,824 KB
testcase_08 AC 106 ms
121,984 KB
testcase_09 AC 112 ms
122,136 KB
testcase_10 AC 124 ms
122,884 KB
testcase_11 AC 53 ms
71,188 KB
testcase_12 AC 53 ms
63,676 KB
testcase_13 AC 59 ms
79,412 KB
testcase_14 AC 59 ms
78,500 KB
testcase_15 AC 100 ms
113,604 KB
testcase_16 AC 101 ms
108,968 KB
testcase_17 AC 72 ms
85,580 KB
testcase_18 AC 61 ms
79,000 KB
testcase_19 AC 79 ms
98,852 KB
testcase_20 AC 90 ms
109,780 KB
testcase_21 AC 78 ms
99,436 KB
testcase_22 AC 79 ms
99,664 KB
testcase_23 AC 63 ms
80,528 KB
testcase_24 AC 49 ms
68,236 KB
testcase_25 AC 57 ms
75,692 KB
testcase_26 AC 70 ms
91,116 KB
testcase_27 AC 84 ms
104,400 KB
testcase_28 AC 55 ms
74,068 KB
testcase_29 AC 96 ms
115,624 KB
testcase_30 AC 104 ms
121,360 KB
testcase_31 AC 57 ms
72,492 KB
testcase_32 AC 57 ms
71,368 KB
testcase_33 AC 62 ms
82,288 KB
testcase_34 AC 102 ms
120,368 KB
testcase_35 AC 72 ms
91,836 KB
testcase_36 AC 110 ms
123,276 KB
testcase_37 AC 105 ms
116,000 KB
testcase_38 AC 53 ms
69,744 KB
testcase_39 AC 88 ms
105,260 KB
testcase_40 AC 87 ms
105,152 KB
testcase_41 AC 44 ms
59,848 KB
testcase_42 AC 47 ms
66,008 KB
testcase_43 AC 39 ms
53,144 KB
testcase_44 AC 40 ms
52,256 KB
testcase_45 AC 40 ms
52,960 KB
testcase_46 AC 41 ms
52,140 KB
testcase_47 AC 42 ms
52,528 KB
testcase_48 AC 41 ms
53,336 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