結果

問題 No.1456 Range Xor
ユーザー xsdxsd
提出日時 2022-07-28 01:39:42
言語 OCaml
(5.1.0)
結果
WA  
実行時間 -
コード長 463 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 22,128 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-17 15:25:47
合計ジャッジ時間 2,806 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 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 10 ms
6,940 KB
testcase_12 AC 5 ms
6,940 KB
testcase_13 AC 14 ms
6,940 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 18 ms
6,944 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 8 ms
6,944 KB
testcase_25 AC 12 ms
6,944 KB
testcase_26 AC 20 ms
6,944 KB
testcase_27 WA -
testcase_28 AC 11 ms
6,940 KB
testcase_29 AC 34 ms
6,944 KB
testcase_30 WA -
testcase_31 AC 10 ms
6,940 KB
testcase_32 AC 9 ms
6,940 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 31 ms
6,940 KB
testcase_38 AC 9 ms
6,940 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 3 ms
6,940 KB
testcase_42 AC 6 ms
6,940 KB
testcase_43 AC 2 ms
6,940 KB
testcase_44 AC 2 ms
6,944 KB
testcase_45 AC 2 ms
6,940 KB
testcase_46 AC 2 ms
6,944 KB
testcase_47 AC 2 ms
6,940 KB
testcase_48 AC 2 ms
6,944 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