結果

問題 No.45 回転寿司
ユーザー taktak
提出日時 2018-04-18 02:27:55
言語 F#
(F# 4.0)
結果
AC  
実行時間 345 ms / 5,000 ms
コード長 223 bytes
コンパイル時間 15,063 ms
コンパイル使用メモリ 187,720 KB
実行使用メモリ 35,208 KB
最終ジャッジ日時 2024-06-08 12:07:39
合計ジャッジ時間 28,080 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 343 ms
34,796 KB
testcase_01 AC 339 ms
34,172 KB
testcase_02 AC 339 ms
34,996 KB
testcase_03 AC 340 ms
34,880 KB
testcase_04 AC 340 ms
34,724 KB
testcase_05 AC 337 ms
34,516 KB
testcase_06 AC 341 ms
35,100 KB
testcase_07 AC 340 ms
34,872 KB
testcase_08 AC 340 ms
34,952 KB
testcase_09 AC 342 ms
34,872 KB
testcase_10 AC 339 ms
34,840 KB
testcase_11 AC 338 ms
34,820 KB
testcase_12 AC 343 ms
34,884 KB
testcase_13 AC 339 ms
34,900 KB
testcase_14 AC 338 ms
34,212 KB
testcase_15 AC 343 ms
34,964 KB
testcase_16 AC 340 ms
35,208 KB
testcase_17 AC 340 ms
34,816 KB
testcase_18 AC 341 ms
34,956 KB
testcase_19 AC 342 ms
34,984 KB
testcase_20 AC 343 ms
34,088 KB
testcase_21 AC 338 ms
34,496 KB
testcase_22 AC 341 ms
34,220 KB
testcase_23 AC 338 ms
35,016 KB
testcase_24 AC 341 ms
34,636 KB
testcase_25 AC 345 ms
34,504 KB
testcase_26 AC 342 ms
35,092 KB
testcase_27 AC 343 ms
35,100 KB
testcase_28 AC 343 ms
34,972 KB
testcase_29 AC 342 ms
34,724 KB
testcase_30 AC 340 ms
34,944 KB
testcase_31 AC 338 ms
34,596 KB
testcase_32 AC 336 ms
34,636 KB
testcase_33 AC 338 ms
35,144 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (410 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 #

let N = stdin.ReadLine() |> int
let V = stdin.ReadLine().Split() |> Array.map(int) 

Array.fold (fun (prepre,pre) x -> 
        let a = prepre + x 
        let b = pre
        (pre,max a b)) (0,0) V
|> snd
|> printfn "%i"  
0