結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 316 ms
35,256 KB
testcase_01 AC 318 ms
35,260 KB
testcase_02 AC 319 ms
35,260 KB
testcase_03 AC 351 ms
50,560 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 AC 328 ms
39,568 KB
testcase_08 RE -
testcase_09 AC 329 ms
39,892 KB
testcase_10 AC 331 ms
39,968 KB
testcase_11 RE -
testcase_12 AC 331 ms
39,356 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 324 ms
35,136 KB
testcase_20 AC 318 ms
35,136 KB
testcase_21 AC 326 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 319 ms
36,608 KB
testcase_43 AC 315 ms
37,088 KB
testcase_44 AC 318 ms
36,916 KB
testcase_45 AC 316 ms
37,000 KB
testcase_46 AC 311 ms
36,444 KB
testcase_47 AC 314 ms
37,104 KB
testcase_48 AC 315 ms
36,524 KB
testcase_49 AC 315 ms
35,776 KB
testcase_50 AC 319 ms
36,580 KB
testcase_51 AC 321 ms
36,856 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (267 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