結果

問題 No.1505 Zero-Product Ranges
ユーザー natoriusannatoriusan
提出日時 2023-08-07 18:52:08
言語 F#
(F# 4.0)
結果
RE  
実行時間 -
コード長 328 bytes
コンパイル時間 7,982 ms
コンパイル使用メモリ 186,172 KB
実行使用メモリ 51,200 KB
最終ジャッジ日時 2024-04-25 12:23:22
合計ジャッジ時間 33,739 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 315 ms
35,332 KB
testcase_01 AC 304 ms
35,132 KB
testcase_02 AC 306 ms
35,008 KB
testcase_03 AC 369 ms
50,176 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 AC 316 ms
39,684 KB
testcase_08 RE -
testcase_09 AC 335 ms
40,032 KB
testcase_10 AC 324 ms
39,968 KB
testcase_11 RE -
testcase_12 AC 315 ms
39,228 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 306 ms
34,876 KB
testcase_20 AC 302 ms
35,260 KB
testcase_21 AC 302 ms
34,716 KB
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 AC 313 ms
36,476 KB
testcase_43 AC 308 ms
36,952 KB
testcase_44 AC 320 ms
36,916 KB
testcase_45 AC 308 ms
36,888 KB
testcase_46 AC 309 ms
36,440 KB
testcase_47 AC 309 ms
36,976 KB
testcase_48 AC 310 ms
36,648 KB
testcase_49 AC 309 ms
35,620 KB
testcase_50 AC 309 ms
36,696 KB
testcase_51 AC 309 ms
36,856 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (217 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 a = stdin.ReadLine().Split " " |> Array.map int


let mutable lastZero = -1
[|
    for i in 0..a.Length-1 ->
        if a.[i] = 0 then
            let count = (i - lastZero) * (a.Length-i)
            lastZero <- i
            count
        else
            0
|] |> Array.sum |> printfn "%d"
0