結果

問題 No.45 回転寿司
ユーザー regeregeregerege
提出日時 2015-10-13 21:35:25
言語 F#
(F# 4.0)
結果
AC  
実行時間 348 ms / 5,000 ms
コード長 169 bytes
コンパイル時間 12,596 ms
コンパイル使用メモリ 188,672 KB
実行使用メモリ 35,432 KB
最終ジャッジ日時 2024-06-08 09:58:33
合計ジャッジ時間 19,933 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 347 ms
34,932 KB
testcase_01 AC 344 ms
34,432 KB
testcase_02 AC 343 ms
34,968 KB
testcase_03 AC 346 ms
34,984 KB
testcase_04 AC 343 ms
35,220 KB
testcase_05 AC 344 ms
34,728 KB
testcase_06 AC 343 ms
34,700 KB
testcase_07 AC 344 ms
34,980 KB
testcase_08 AC 343 ms
34,916 KB
testcase_09 AC 342 ms
34,864 KB
testcase_10 AC 342 ms
34,548 KB
testcase_11 AC 344 ms
35,432 KB
testcase_12 AC 342 ms
35,364 KB
testcase_13 AC 345 ms
34,996 KB
testcase_14 AC 344 ms
34,856 KB
testcase_15 AC 342 ms
35,072 KB
testcase_16 AC 345 ms
34,676 KB
testcase_17 AC 343 ms
35,320 KB
testcase_18 AC 341 ms
35,304 KB
testcase_19 AC 345 ms
35,052 KB
testcase_20 AC 343 ms
34,848 KB
testcase_21 AC 343 ms
34,716 KB
testcase_22 AC 345 ms
34,848 KB
testcase_23 AC 344 ms
34,852 KB
testcase_24 AC 344 ms
34,856 KB
testcase_25 AC 344 ms
34,976 KB
testcase_26 AC 345 ms
34,168 KB
testcase_27 AC 345 ms
34,200 KB
testcase_28 AC 348 ms
35,064 KB
testcase_29 AC 345 ms
34,580 KB
testcase_30 AC 346 ms
35,212 KB
testcase_31 AC 340 ms
35,092 KB
testcase_32 AC 342 ms
34,988 KB
testcase_33 AC 344 ms
34,988 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (587 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
    stdin.ReadLine().Split([|' '|])
    |> Seq.map int
    |> Seq.fold (fun (a,b) n -> (max a (b+n)),a) (0,0)
    |> fst |> (printfn "%d")
0