結果

問題 No.1007 コイン集め
ユーザー guriceringuricerin
提出日時 2020-03-06 23:21:02
言語 F#
(F# 4.0)
結果
AC  
実行時間 96 ms / 1,500 ms
コード長 1,579 bytes
コンパイル時間 8,511 ms
コンパイル使用メモリ 200,772 KB
実行使用メモリ 51,912 KB
最終ジャッジ日時 2024-10-14 09:52:20
合計ジャッジ時間 11,314 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
29,940 KB
testcase_01 AC 70 ms
30,976 KB
testcase_02 AC 61 ms
29,568 KB
testcase_03 AC 70 ms
30,720 KB
testcase_04 AC 61 ms
29,568 KB
testcase_05 AC 61 ms
29,440 KB
testcase_06 AC 61 ms
29,568 KB
testcase_07 AC 62 ms
29,696 KB
testcase_08 AC 62 ms
29,440 KB
testcase_09 AC 61 ms
29,440 KB
testcase_10 AC 61 ms
29,440 KB
testcase_11 AC 61 ms
29,568 KB
testcase_12 AC 94 ms
46,464 KB
testcase_13 AC 93 ms
46,584 KB
testcase_14 AC 94 ms
46,592 KB
testcase_15 AC 83 ms
38,656 KB
testcase_16 AC 82 ms
38,528 KB
testcase_17 AC 80 ms
38,784 KB
testcase_18 AC 96 ms
51,912 KB
testcase_19 AC 96 ms
49,352 KB
testcase_20 AC 95 ms
51,656 KB
testcase_21 AC 95 ms
50,760 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (250 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
/home/judge/data/code/Main.fs(23,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 #

open System
open System.Collections.Generic

[<AutoOpen>]
module Cin =
    let read f = stdin.ReadLine() |> f
    let reada f = stdin.ReadLine().Split() |> Array.map f
    let readChars() = read string |> Seq.toArray
    let readInts() = readChars() |> Array.map (fun x -> Convert.ToInt32(x.ToString()))

[<AutoOpen>]
module Cout =
    let writer = new IO.StreamWriter(new IO.BufferedStream(Console.OpenStandardOutput()))
    let print (s: string) = writer.Write s
    let println (s: string) = writer.WriteLine s
    let inline puts (s: ^a) = string s |> println

// -----------------------------------------------------------------------------------------------------

// -----------------------------------------------------------------------------------------------------

let main() =
    let [| N; K |] = reada int
    let A = reada int64
    if A.[K - 1] = 0L then
        printfn "0"
        exit 0

    let A = Array.append [| 0L |] A
    let A = Array.append A [| 0L |]
    let mutable r = K + 1
    let mutable ok = true
    while r < N && ok do
        if A.[r] <= 1L then ok <- false
        if ok then r <- r + 1

    let mutable l = K - 1
    let mutable ok = true
    while l > 0 && ok do
        if A.[l] <= 1L then ok <- false
        if ok then l <- l - 1

    let ans = A.[l..r] |> Array.sum
    let ans2 = max (Array.sum A.[l..K]) (Array.sum A.[K..r])

    let ans =
        if A.[K] = 1L then ans2 else ans
    puts ans
    ()

// -----------------------------------------------------------------------------------------------------
main()
writer.Dispose()
0