結果

問題 No.45 回転寿司
ユーザー regeregeregerege
提出日時 2015-10-12 20:57:44
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 713 bytes
コンパイル時間 15,838 ms
コンパイル使用メモリ 185,032 KB
実行使用メモリ 35,392 KB
最終ジャッジ日時 2024-05-03 11:16:42
合計ジャッジ時間 19,276 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 330 ms
34,596 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 334 ms
34,120 KB
testcase_23 AC 337 ms
34,760 KB
testcase_24 AC 334 ms
34,512 KB
testcase_25 AC 328 ms
34,512 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 327 ms
34,640 KB
testcase_32 AC 333 ms
34,640 KB
testcase_33 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (298 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 rec f l p n =
        if p + 3 < List.length l then
            let a = (l.[p+0] + l.[p+2])
            let c = (l.[p+0] + l.[p+3])
            let b = (l.[p+1] + l.[p+3])
            let d = List.max [a;b;c]
            let e =
                if d = a || d = c then 0
                else 1
            f l (p+2+e) (n+l.[p+e])
        elif p + 2 < List.length l then
            n + (max (l.[p] + l.[p+2]) l.[p+1])
        elif p + 1 < List.length l then
            n + (max l.[p] l.[p+1])
        elif p < List.length l then
            n + l.[p]
        else n
    stdin.ReadLine() |> ignore
    let l = stdin.ReadLine().Split([|' '|]) |> Seq.map (int) |> Seq.toList
    f l 0 0
    |> (printfn "%d")
0