結果

問題 No.1456 Range Xor
ユーザー kept1994kept1994
提出日時 2022-12-24 18:18:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 418 bytes
コンパイル時間 412 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 96,120 KB
最終ジャッジ日時 2024-11-18 05:33:08
合計ジャッジ時間 5,801 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,328 KB
testcase_01 AC 38 ms
52,032 KB
testcase_02 AC 38 ms
52,128 KB
testcase_03 AC 67 ms
86,468 KB
testcase_04 AC 68 ms
87,756 KB
testcase_05 AC 75 ms
94,220 KB
testcase_06 AC 65 ms
86,396 KB
testcase_07 AC 77 ms
96,120 KB
testcase_08 AC 74 ms
92,836 KB
testcase_09 AC 66 ms
87,612 KB
testcase_10 AC 69 ms
88,544 KB
testcase_11 AC 47 ms
67,116 KB
testcase_12 AC 42 ms
62,072 KB
testcase_13 AC 52 ms
70,852 KB
testcase_14 AC 49 ms
68,712 KB
testcase_15 AC 61 ms
82,624 KB
testcase_16 AC 64 ms
83,568 KB
testcase_17 AC 57 ms
76,648 KB
testcase_18 AC 51 ms
68,404 KB
testcase_19 AC 63 ms
80,612 KB
testcase_20 AC 66 ms
85,816 KB
testcase_21 AC 59 ms
77,880 KB
testcase_22 AC 58 ms
76,232 KB
testcase_23 AC 53 ms
71,420 KB
testcase_24 AC 47 ms
66,164 KB
testcase_25 AC 51 ms
70,084 KB
testcase_26 AC 61 ms
79,132 KB
testcase_27 AC 61 ms
82,368 KB
testcase_28 AC 51 ms
68,388 KB
testcase_29 AC 78 ms
95,680 KB
testcase_30 AC 70 ms
89,348 KB
testcase_31 AC 49 ms
68,284 KB
testcase_32 AC 49 ms
67,436 KB
testcase_33 AC 55 ms
72,228 KB
testcase_34 AC 73 ms
93,100 KB
testcase_35 AC 58 ms
76,468 KB
testcase_36 AC 71 ms
89,228 KB
testcase_37 AC 77 ms
94,960 KB
testcase_38 AC 46 ms
65,384 KB
testcase_39 AC 62 ms
79,236 KB
testcase_40 AC 68 ms
87,380 KB
testcase_41 AC 42 ms
60,328 KB
testcase_42 AC 45 ms
62,748 KB
testcase_43 WA -
testcase_44 AC 37 ms
52,940 KB
testcase_45 WA -
testcase_46 AC 38 ms
52,368 KB
testcase_47 WA -
testcase_48 AC 38 ms
52,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys

def main():
    N, K = map(int, input().split())
    A = list(map(int, input().split()))[1:]
    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