結果

問題 No.1535 五七五
ユーザー eseharaesehara
提出日時 2021-06-09 23:21:51
言語 OCaml
(5.1.0)
結果
TLE  
実行時間 -
コード長 1,527 bytes
コンパイル時間 1,637 ms
コンパイル使用メモリ 19,840 KB
実行使用メモリ 39,224 KB
最終ジャッジ日時 2024-11-29 00:55:45
合計ジャッジ時間 28,612 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,496 KB
testcase_01 AC 1 ms
30,964 KB
testcase_02 AC 1 ms
10,496 KB
testcase_03 AC 2 ms
39,224 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 1 ms
34,056 KB
testcase_08 AC 1 ms
10,624 KB
testcase_09 AC 1 ms
34,056 KB
testcase_10 AC 2 ms
10,624 KB
testcase_11 AC 1 ms
34,192 KB
testcase_12 AC 1 ms
10,624 KB
testcase_13 AC 2 ms
34,056 KB
testcase_14 AC 2 ms
10,624 KB
testcase_15 AC 1 ms
34,060 KB
testcase_16 AC 1 ms
10,624 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

module Cp : sig
  val string_1_list_of_string: string -> string list
  val split_on_char: char -> string -> string list
  val read_int_list: unit -> int list
end =
struct
  let string_1_list_of_string x =
    String.to_seq x
    |> List.of_seq
    |> List.map (String.make 1);;

  let split_on_char sep s =
    (* from OCaml Standard Library 4.12 *)
    let r = ref [] in
    let j = ref (String.length s) in
    for i = String.length s - 1 downto 0 do
      if String.unsafe_get s i = sep then begin
        r := String.sub s (i + 1) (!j - i - 1) :: !r;
        j := i
      end
    done;
    String.sub s 0 !j :: !r;;

  let read_int_list () =
    read_line () |> split_on_char ' ' |> List.map int_of_string;;
end

let rec puyopuyo lst abc =
  match abc with
  | [] -> true
  | hd::tl ->
    match lst with
    | [] -> false
    | lhd::_ when hd < String.length lhd -> false
    | lhd::ltl when hd = String.length lhd -> puyopuyo ltl tl
    | lhd::ltl when hd > String.length lhd ->
      puyopuyo ltl ((hd - (String.length lhd)) :: tl)
    | _ -> failwith "WTF !!!! ( o____o ) !!!!"

let rec solve lst abc result =
  match lst with
  | [] -> failwith "WTF!!!"
  | _ when List.length lst < 3 -> result
  | _::tl ->
    if (puyopuyo lst abc)
    then solve tl abc (result + 1)
    else solve tl abc result;;

let rec start lst abc = solve lst abc 0;;

let () =
  read_line () |> ignore;
  let abc = Cp.read_int_list () in
  let lst = Cp.split_on_char ' ' (read_line ()) in
  solve lst abc 0 |> print_int;
  print_newline ();;
0