結果

問題 No.1456 Range Xor
ユーザー xsdxsd
提出日時 2022-07-28 01:39:42
言語 OCaml
(5.1.0)
結果
WA  
実行時間 -
コード長 463 bytes
コンパイル時間 1,550 ms
コンパイル使用メモリ 20,012 KB
実行使用メモリ 6,564 KB
最終ジャッジ日時 2023-09-24 14:44:05
合計ジャッジ時間 4,767 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 9 ms
5,732 KB
testcase_12 AC 5 ms
5,760 KB
testcase_13 AC 13 ms
5,912 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 17 ms
5,916 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 8 ms
5,744 KB
testcase_25 AC 12 ms
5,892 KB
testcase_26 AC 19 ms
6,016 KB
testcase_27 WA -
testcase_28 AC 12 ms
5,852 KB
testcase_29 AC 34 ms
6,408 KB
testcase_30 WA -
testcase_31 AC 11 ms
5,888 KB
testcase_32 AC 9 ms
5,844 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 31 ms
6,376 KB
testcase_38 AC 8 ms
5,756 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 3 ms
4,376 KB
testcase_42 AC 6 ms
5,844 KB
testcase_43 AC 2 ms
4,380 KB
testcase_44 AC 2 ms
4,380 KB
testcase_45 AC 1 ms
4,380 KB
testcase_46 AC 1 ms
4,376 KB
testcase_47 AC 2 ms
4,376 KB
testcase_48 AC 1 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Scanf.scanf "%d %d" (fun n k ->
    let a = Array.init n (fun _ -> Scanf.scanf " %d" (fun a -> a)) in
    let module S = Set.Make (struct type t = int let compare = compare end) in

    let rec loop i acc set =
        if i = n then false else
            let acc = acc lor a.(i) in
            if S.mem (acc lxor k) set then true else
                loop (i + 1) acc (S.add acc set)
    in
    print_endline @@ if loop 0 0 (S.singleton 0) then "Yes" else "No"
)
0