結果

問題 No.1505 Zero-Product Ranges
ユーザー natoriusannatoriusan
提出日時 2023-08-07 18:54:02
言語 F#
(F# 4.0)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 350 bytes
コンパイル時間 8,031 ms
コンパイル使用メモリ 187,524 KB
実行使用メモリ 62,848 KB
最終ジャッジ日時 2024-04-25 12:27:32
合計ジャッジ時間 16,503 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
34,048 KB
testcase_01 AC 97 ms
34,304 KB
testcase_02 AC 98 ms
34,304 KB
testcase_03 AC 155 ms
53,632 KB
testcase_04 AC 167 ms
60,032 KB
testcase_05 AC 124 ms
46,208 KB
testcase_06 AC 124 ms
45,440 KB
testcase_07 AC 113 ms
40,192 KB
testcase_08 AC 119 ms
44,032 KB
testcase_09 AC 116 ms
41,472 KB
testcase_10 AC 116 ms
41,984 KB
testcase_11 AC 125 ms
45,952 KB
testcase_12 AC 113 ms
39,928 KB
testcase_13 AC 138 ms
50,560 KB
testcase_14 AC 135 ms
48,768 KB
testcase_15 AC 158 ms
61,944 KB
testcase_16 AC 163 ms
59,896 KB
testcase_17 AC 165 ms
60,416 KB
testcase_18 AC 169 ms
59,896 KB
testcase_19 AC 94 ms
34,424 KB
testcase_20 AC 96 ms
34,432 KB
testcase_21 AC 97 ms
34,432 KB
testcase_22 AC 165 ms
59,776 KB
testcase_23 AC 162 ms
62,848 KB
testcase_24 AC 161 ms
61,824 KB
testcase_25 AC 158 ms
60,800 KB
testcase_26 AC 159 ms
61,816 KB
testcase_27 AC 156 ms
61,184 KB
testcase_28 AC 158 ms
61,428 KB
testcase_29 AC 162 ms
62,592 KB
testcase_30 AC 168 ms
59,896 KB
testcase_31 AC 161 ms
61,952 KB
testcase_32 AC 133 ms
48,640 KB
testcase_33 AC 130 ms
48,108 KB
testcase_34 AC 138 ms
49,400 KB
testcase_35 AC 123 ms
46,080 KB
testcase_36 AC 128 ms
46,592 KB
testcase_37 AC 131 ms
48,384 KB
testcase_38 AC 130 ms
47,744 KB
testcase_39 AC 129 ms
48,128 KB
testcase_40 AC 132 ms
48,488 KB
testcase_41 AC 136 ms
50,304 KB
testcase_42 AC 100 ms
36,076 KB
testcase_43 AC 104 ms
37,120 KB
testcase_44 AC 105 ms
36,608 KB
testcase_45 AC 104 ms
37,120 KB
testcase_46 AC 102 ms
35,968 KB
testcase_47 AC 101 ms
37,120 KB
testcase_48 AC 99 ms
36,096 KB
testcase_49 AC 98 ms
34,944 KB
testcase_50 AC 100 ms
36,480 KB
testcase_51 AC 103 ms
36,472 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (236 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 = bigint(i - lastZero) * bigint(a.Length-i)
            lastZero <- i
            count
        else
            0 |> bigint
|] |> Array.sum |> printfn "%A"
0