結果

問題 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,657 ms
コンパイル使用メモリ 185,748 KB
実行使用メモリ 62,720 KB
最終ジャッジ日時 2024-11-07 23:55:05
合計ジャッジ時間 16,831 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
34,176 KB
testcase_01 AC 92 ms
34,176 KB
testcase_02 AC 93 ms
34,176 KB
testcase_03 AC 163 ms
53,888 KB
testcase_04 AC 160 ms
59,904 KB
testcase_05 AC 120 ms
46,208 KB
testcase_06 AC 119 ms
45,440 KB
testcase_07 AC 110 ms
40,064 KB
testcase_08 AC 117 ms
43,904 KB
testcase_09 AC 111 ms
41,600 KB
testcase_10 AC 112 ms
41,856 KB
testcase_11 AC 120 ms
45,696 KB
testcase_12 AC 111 ms
40,192 KB
testcase_13 AC 133 ms
50,560 KB
testcase_14 AC 127 ms
48,768 KB
testcase_15 AC 153 ms
61,952 KB
testcase_16 AC 162 ms
59,904 KB
testcase_17 AC 163 ms
59,904 KB
testcase_18 AC 165 ms
60,032 KB
testcase_19 AC 93 ms
34,300 KB
testcase_20 AC 93 ms
34,176 KB
testcase_21 AC 94 ms
34,432 KB
testcase_22 AC 159 ms
59,520 KB
testcase_23 AC 156 ms
62,464 KB
testcase_24 AC 153 ms
61,696 KB
testcase_25 AC 150 ms
60,800 KB
testcase_26 AC 169 ms
61,824 KB
testcase_27 AC 153 ms
61,056 KB
testcase_28 AC 156 ms
61,440 KB
testcase_29 AC 157 ms
62,720 KB
testcase_30 AC 164 ms
59,904 KB
testcase_31 AC 158 ms
61,824 KB
testcase_32 AC 133 ms
48,384 KB
testcase_33 AC 126 ms
47,872 KB
testcase_34 AC 134 ms
49,152 KB
testcase_35 AC 123 ms
45,824 KB
testcase_36 AC 125 ms
46,464 KB
testcase_37 AC 130 ms
48,384 KB
testcase_38 AC 123 ms
47,360 KB
testcase_39 AC 127 ms
47,872 KB
testcase_40 AC 127 ms
48,384 KB
testcase_41 AC 134 ms
50,176 KB
testcase_42 AC 99 ms
35,968 KB
testcase_43 AC 101 ms
36,864 KB
testcase_44 AC 98 ms
36,096 KB
testcase_45 AC 101 ms
36,608 KB
testcase_46 AC 103 ms
35,840 KB
testcase_47 AC 99 ms
36,864 KB
testcase_48 AC 99 ms
35,968 KB
testcase_49 AC 93 ms
34,944 KB
testcase_50 AC 102 ms
36,096 KB
testcase_51 AC 98 ms
36,224 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (250 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