結果

問題 No.1456 Range Xor
ユーザー kept1994kept1994
提出日時 2022-12-24 18:21:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 414 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 95,820 KB
最終ジャッジ日時 2024-11-18 05:33:13
合計ジャッジ時間 4,563 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,280 KB
testcase_01 AC 38 ms
52,616 KB
testcase_02 AC 38 ms
53,224 KB
testcase_03 AC 67 ms
84,984 KB
testcase_04 AC 67 ms
88,000 KB
testcase_05 AC 76 ms
94,452 KB
testcase_06 AC 65 ms
85,420 KB
testcase_07 AC 77 ms
95,820 KB
testcase_08 AC 72 ms
91,520 KB
testcase_09 AC 68 ms
85,464 KB
testcase_10 AC 68 ms
88,944 KB
testcase_11 AC 49 ms
67,168 KB
testcase_12 AC 45 ms
63,248 KB
testcase_13 AC 53 ms
71,832 KB
testcase_14 AC 51 ms
68,588 KB
testcase_15 AC 63 ms
82,124 KB
testcase_16 AC 65 ms
83,044 KB
testcase_17 AC 58 ms
75,996 KB
testcase_18 AC 49 ms
68,060 KB
testcase_19 AC 63 ms
80,608 KB
testcase_20 AC 65 ms
83,396 KB
testcase_21 AC 58 ms
78,632 KB
testcase_22 AC 56 ms
75,664 KB
testcase_23 AC 54 ms
72,272 KB
testcase_24 AC 46 ms
65,148 KB
testcase_25 AC 51 ms
70,588 KB
testcase_26 AC 59 ms
78,496 KB
testcase_27 AC 61 ms
81,772 KB
testcase_28 AC 49 ms
68,296 KB
testcase_29 AC 77 ms
94,688 KB
testcase_30 AC 67 ms
89,236 KB
testcase_31 AC 49 ms
68,820 KB
testcase_32 AC 48 ms
66,904 KB
testcase_33 AC 54 ms
73,924 KB
testcase_34 AC 73 ms
91,268 KB
testcase_35 AC 58 ms
76,312 KB
testcase_36 AC 69 ms
89,508 KB
testcase_37 AC 76 ms
93,932 KB
testcase_38 AC 45 ms
64,692 KB
testcase_39 AC 59 ms
79,716 KB
testcase_40 AC 69 ms
86,776 KB
testcase_41 AC 43 ms
59,608 KB
testcase_42 AC 44 ms
63,416 KB
testcase_43 AC 38 ms
52,516 KB
testcase_44 AC 37 ms
53,564 KB
testcase_45 AC 37 ms
53,812 KB
testcase_46 AC 38 ms
53,500 KB
testcase_47 AC 38 ms
52,396 KB
testcase_48 AC 37 ms
53,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys

def main():
    N, K = map(int, input().split())
    A = list(map(int, input().split()))
    last_xors = 0
    xors = set([last_xors])
    for aa in A:
        last_xors ^= aa
        target = last_xors ^ K
        if target in xors:
            print("Yes")
            return
        xors.add(last_xors)
    print("No")
    return
        
if __name__ == '__main__':
    main()
0