結果

問題 No.1456 Range Xor
ユーザー hiragnhiragn
提出日時 2022-11-26 21:11:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 320 bytes
コンパイル時間 115 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 23,420 KB
最終ジャッジ日時 2024-10-03 04:18:41
合計ジャッジ時間 4,463 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 24 ms
10,752 KB
testcase_03 AC 55 ms
21,552 KB
testcase_04 AC 60 ms
21,548 KB
testcase_05 AC 70 ms
21,676 KB
testcase_06 AC 58 ms
21,680 KB
testcase_07 AC 71 ms
21,680 KB
testcase_08 AC 65 ms
21,556 KB
testcase_09 AC 58 ms
21,428 KB
testcase_10 AC 62 ms
21,804 KB
testcase_11 AC 34 ms
13,276 KB
testcase_12 AC 28 ms
12,032 KB
testcase_13 AC 41 ms
16,832 KB
testcase_14 AC 36 ms
14,448 KB
testcase_15 AC 51 ms
19,576 KB
testcase_16 AC 54 ms
18,992 KB
testcase_17 AC 46 ms
16,820 KB
testcase_18 AC 34 ms
14,428 KB
testcase_19 AC 53 ms
18,332 KB
testcase_20 AC 57 ms
18,588 KB
testcase_21 AC 48 ms
17,668 KB
testcase_22 AC 45 ms
17,436 KB
testcase_23 AC 42 ms
16,904 KB
testcase_24 AC 31 ms
12,672 KB
testcase_25 AC 38 ms
16,136 KB
testcase_26 AC 50 ms
17,380 KB
testcase_27 AC 53 ms
18,340 KB
testcase_28 AC 38 ms
15,648 KB
testcase_29 AC 74 ms
23,420 KB
testcase_30 AC 62 ms
21,000 KB
testcase_31 AC 39 ms
15,572 KB
testcase_32 AC 34 ms
13,440 KB
testcase_33 AC 42 ms
16,640 KB
testcase_34 AC 66 ms
20,952 KB
testcase_35 AC 50 ms
17,976 KB
testcase_36 AC 62 ms
21,136 KB
testcase_37 AC 72 ms
23,184 KB
testcase_38 AC 32 ms
12,800 KB
testcase_39 AC 49 ms
18,620 KB
testcase_40 AC 66 ms
18,552 KB
testcase_41 AC 26 ms
10,752 KB
testcase_42 AC 30 ms
12,544 KB
testcase_43 AC 25 ms
10,496 KB
testcase_44 AC 24 ms
10,496 KB
testcase_45 AC 25 ms
10,624 KB
testcase_46 AC 25 ms
10,496 KB
testcase_47 AC 25 ms
10,496 KB
testcase_48 AC 25 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    n, k = map(int, input().split())
    arr = list(map(int, input().split()))

    s = set()
    s.add(0)
    now = 0
    for a in arr:
        now = now ^ a
        tmp = now ^ k
        if tmp in s:
            exit(print("Yes"))
        s.add(now)
    print("No")


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