結果

問題 No.45 回転寿司
ユーザー regeregeregerege
提出日時 2015-10-13 21:32:36
言語 F#
(F# 4.0)
結果
AC  
実行時間 351 ms / 5,000 ms
コード長 199 bytes
コンパイル時間 14,176 ms
コンパイル使用メモリ 188,824 KB
実行使用メモリ 35,256 KB
最終ジャッジ日時 2024-06-08 09:57:04
合計ジャッジ時間 27,303 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 341 ms
35,100 KB
testcase_01 AC 344 ms
34,852 KB
testcase_02 AC 342 ms
34,868 KB
testcase_03 AC 340 ms
35,256 KB
testcase_04 AC 343 ms
35,196 KB
testcase_05 AC 341 ms
33,828 KB
testcase_06 AC 344 ms
34,704 KB
testcase_07 AC 344 ms
34,744 KB
testcase_08 AC 341 ms
35,056 KB
testcase_09 AC 344 ms
35,000 KB
testcase_10 AC 343 ms
34,948 KB
testcase_11 AC 340 ms
34,692 KB
testcase_12 AC 342 ms
34,744 KB
testcase_13 AC 344 ms
33,824 KB
testcase_14 AC 339 ms
34,208 KB
testcase_15 AC 351 ms
34,716 KB
testcase_16 AC 344 ms
34,828 KB
testcase_17 AC 341 ms
35,092 KB
testcase_18 AC 343 ms
34,828 KB
testcase_19 AC 342 ms
34,696 KB
testcase_20 AC 341 ms
33,860 KB
testcase_21 AC 342 ms
34,036 KB
testcase_22 AC 344 ms
34,120 KB
testcase_23 AC 348 ms
34,768 KB
testcase_24 AC 340 ms
34,076 KB
testcase_25 AC 349 ms
34,252 KB
testcase_26 AC 342 ms
34,824 KB
testcase_27 AC 343 ms
34,984 KB
testcase_28 AC 341 ms
34,288 KB
testcase_29 AC 344 ms
35,108 KB
testcase_30 AC 342 ms
35,244 KB
testcase_31 AC 340 ms
33,824 KB
testcase_32 AC 341 ms
34,232 KB
testcase_33 AC 347 ms
34,880 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (353 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

    stdin.ReadLine() |> ignore
    let l = stdin.ReadLine().Split([|' '|]) |> Seq.map (int) |> Seq.toList
    let f = List.fold (fun (a,b) n -> (max a (b+n)),a) (0,0)
    printfn "%d" <| (f >> fst) l
0