結果

問題 No.1285 ゴミ捨て
ユーザー thglaflsthglafls
提出日時 2023-04-30 23:50:15
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 367 bytes
コンパイル時間 9,413 ms
コンパイル使用メモリ 186,152 KB
実行使用メモリ 43,292 KB
最終ジャッジ日時 2024-11-19 13:29:19
合計ジャッジ時間 20,054 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 349 ms
35,308 KB
testcase_01 AC 349 ms
35,240 KB
testcase_02 AC 353 ms
35,692 KB
testcase_03 AC 348 ms
35,124 KB
testcase_04 AC 346 ms
35,248 KB
testcase_05 AC 349 ms
35,432 KB
testcase_06 AC 349 ms
35,560 KB
testcase_07 WA -
testcase_08 AC 352 ms
35,608 KB
testcase_09 AC 369 ms
38,212 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 357 ms
36,924 KB
testcase_17 AC 362 ms
37,396 KB
testcase_18 AC 361 ms
37,344 KB
testcase_19 WA -
testcase_20 AC 360 ms
36,160 KB
testcase_21 AC 361 ms
37,576 KB
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (301 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 calc a =
    let a_sorted = Array.append (Array.sort a) [| 0 |]
    let index = [| 1 .. a_sorted.Length - 1 |]
    (Array.filter (fun i -> a_sorted.[i] - a_sorted.[i - 1] = 1) index).Length + 1

let main =
    let n = stdin.ReadLine() |> int

    let e =
        [| for i = 0 to n - 1 do
               stdin.ReadLine() |> int |]

    printfn "%d" (calc e)
    0
0