結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー r6ever6eve
提出日時 2017-08-09 12:02:32
言語 OCaml
(5.1.0)
結果
WA  
実行時間 -
コード長 533 bytes
コンパイル時間 421 ms
コンパイル使用メモリ 20,992 KB
実行使用メモリ 37,156 KB
最終ジャッジ日時 2024-10-09 00:03:51
合計ジャッジ時間 1,838 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 WA -
testcase_05 AC 2 ms
5,248 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 13 ms
9,728 KB
testcase_09 AC 21 ms
11,960 KB
testcase_10 AC 80 ms
30,816 KB
testcase_11 AC 86 ms
30,324 KB
testcase_12 AC 80 ms
29,960 KB
testcase_13 AC 86 ms
31,892 KB
testcase_14 AC 87 ms
32,684 KB
testcase_15 AC 88 ms
32,832 KB
testcase_16 AC 104 ms
37,156 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

module IO = struct

  (* @since 4.04.0 *)
  let split_on_char sep s =
    let open String in
    let r = ref [] in
    let j = ref (length s) in
    for i = length s - 1 downto 0 do
      if get s i = sep then begin
        r := sub s (i + 1) (!j - i - 1) :: !r;
        j := i
      end
    done;
    sub s 0 !j :: !r

  let read_ss () = read_line () |> split_on_char ' '

  let read_ns () = read_ss () |> List.map int_of_string

end

let () =
  read_int () |> ignore;
  IO.read_ns () |> List.fold_left (+) 0 |> Printf.printf "%d\n"
0