結果

問題 No.1007 コイン集め
ユーザー ikdikd
提出日時 2020-05-04 23:46:20
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 1,108 bytes
コンパイル時間 8,938 ms
コンパイル使用メモリ 211,972 KB
実行使用メモリ 53,756 KB
最終ジャッジ日時 2024-06-25 03:35:05
合計ジャッジ時間 17,598 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 68 ms
30,464 KB
testcase_02 WA -
testcase_03 AC 71 ms
30,592 KB
testcase_04 AC 343 ms
34,932 KB
testcase_05 AC 341 ms
34,800 KB
testcase_06 AC 343 ms
34,248 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 370 ms
50,048 KB
testcase_13 AC 369 ms
49,792 KB
testcase_14 AC 373 ms
49,792 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 373 ms
53,632 KB
testcase_19 AC 97 ms
47,232 KB
testcase_20 AC 374 ms
53,756 KB
testcase_21 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (343 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
/home/judge/data/code/Main.fs(7,9): warning FS0025: この式のパターン マッチが不完全です たとえば、値 '[|_; _; _|]' はパターンに含まれないケースを示す可能性があります。 [/home/judge/data/code/main.fsproj]
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

// Learn more about F# at http://fsharp.org

open System

[<EntryPoint>]
let main argv =
    let [| n; kk |] = stdin.ReadLine().Split() |> Array.map int
    let a = stdin.ReadLine().Split() |> Array.map int64

    let k = kk - 1
    if a.[k] = 0L then
        printfn "0"
        exit 0

    let pa =
        if k - 1 >= 0 then a.[..k] else [||]
    let sa =
        if k + 1 < n then a.[(k + 1)..] else [||]

    let l =
        match pa |> Array.tryFindIndexBack (fun x -> x = 0L) with
        | Some i -> i + 1
        | None ->
            match pa |> Array.tryFindIndexBack (fun x -> x = 1L) with
            | Some i -> i
            | None -> 0

    let r =
        match sa |> Array.tryFindIndex (fun x -> x = 0L) with
        | Some i -> i + k - 1
        | None ->
            match sa |> Array.tryFindIndex (fun x -> x = 1L) with
            | Some i -> i + k
            | None -> n - 1

    if a.[k] = 1L then
        max (a.[l..k] |> Array.sum) (a.[k..r] |> Array.sum) |> printfn "%d"
    else
        a.[l..r]
        |> Array.sum
        |> printfn "%d"

    0 // return an integer exit code
0