結果

問題 No.1007 コイン集め
ユーザー ikdikd
提出日時 2020-05-04 23:56:58
言語 F#
(F# 4.0)
結果
AC  
実行時間 375 ms / 1,500 ms
コード長 1,197 bytes
コンパイル時間 15,204 ms
コンパイル使用メモリ 213,416 KB
実行使用メモリ 53,616 KB
最終ジャッジ日時 2024-06-25 05:11:16
合計ジャッジ時間 19,015 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 338 ms
34,988 KB
testcase_01 AC 68 ms
30,592 KB
testcase_02 AC 338 ms
34,184 KB
testcase_03 AC 69 ms
30,848 KB
testcase_04 AC 346 ms
35,004 KB
testcase_05 AC 337 ms
34,592 KB
testcase_06 AC 338 ms
34,552 KB
testcase_07 AC 338 ms
34,848 KB
testcase_08 AC 340 ms
34,864 KB
testcase_09 AC 338 ms
35,004 KB
testcase_10 AC 343 ms
35,124 KB
testcase_11 AC 345 ms
34,988 KB
testcase_12 AC 370 ms
50,304 KB
testcase_13 AC 368 ms
49,920 KB
testcase_14 AC 367 ms
50,048 KB
testcase_15 AC 356 ms
42,496 KB
testcase_16 AC 356 ms
42,752 KB
testcase_17 AC 358 ms
42,624 KB
testcase_18 AC 375 ms
53,616 KB
testcase_19 AC 98 ms
47,360 KB
testcase_20 AC 372 ms
53,504 KB
testcase_21 AC 371 ms
53,120 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (368 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 - 1)] else [||]

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

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

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