結果
問題 | No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用) |
ユーザー | shoichiro-sasaki |
提出日時 | 2018-04-28 19:25:49 |
言語 | OCaml (5.1.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,242 bytes |
コンパイル時間 | 302 ms |
コンパイル使用メモリ | 21,516 KB |
実行使用メモリ | 35,600 KB |
最終ジャッジ日時 | 2024-10-09 00:30:45 |
合計ジャッジ時間 | 2,249 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 26 ms
8,344 KB |
testcase_09 | AC | 33 ms
11,812 KB |
testcase_10 | AC | 120 ms
31,440 KB |
testcase_11 | AC | 123 ms
32,916 KB |
testcase_12 | AC | 122 ms
32,176 KB |
testcase_13 | AC | 126 ms
33,708 KB |
testcase_14 | AC | 132 ms
33,044 KB |
testcase_15 | AC | 138 ms
34,224 KB |
testcase_16 | AC | 147 ms
35,600 KB |
testcase_17 | AC | 2 ms
5,248 KB |
testcase_18 | RE | - |
ソースコード
open Scanf open Printf let ($) f x = f x let scanIntlist n = let list = ref [] in for i = 1 to n do list := (scanf (if i < n then "%d " else "%d") (fun x -> x))::!list done; List.rev !list let string2charlist s = let rec proc i res = try proc (i+1) $ s.[i]::res with Invalid_argument _ -> res in List.rev $ proc 0 [] let minInt l = let rec proc l res = match l with [] -> res | x::xs -> if x < res then proc xs x else proc xs res in if l == [] then raise $ Failure "null list" else proc l max_int let maxInt l = let rec proc l res = match l with [] -> res | x::xs -> if x > res then proc xs x else proc xs res in if l == [] then raise $ Failure "null list" else proc l min_int let rec listSum = function [] -> 0 | x::xs -> x+listSum xs;; let rec quick_sort = function ([] | [_]) as l -> l | pivot :: rest -> let rec partition left right = function [] -> (quick_sort left) @ (pivot :: quick_sort right) | y :: ys -> if pivot < y then partition left (y :: right) ys else partition (y :: left) right ys in partition [] [] rest;; scanf "%d " $ fun n -> print_int ( listSum (scanIntlist n));;