結果

問題 No.1686 Geschenkt
ユーザー ichibanshiboriichibanshibori
提出日時 2021-09-27 22:21:59
言語 F#
(F# 4.0)
結果
AC  
実行時間 320 ms / 2,000 ms
コード長 394 bytes
コンパイル時間 16,549 ms
コンパイル使用メモリ 190,932 KB
実行使用メモリ 35,308 KB
最終ジャッジ日時 2024-07-06 18:46:39
合計ジャッジ時間 20,797 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 310 ms
34,872 KB
testcase_01 AC 310 ms
34,424 KB
testcase_02 AC 320 ms
34,348 KB
testcase_03 AC 301 ms
34,188 KB
testcase_04 AC 303 ms
34,224 KB
testcase_05 AC 306 ms
35,308 KB
testcase_06 AC 315 ms
34,360 KB
testcase_07 AC 308 ms
34,440 KB
testcase_08 AC 304 ms
34,704 KB
testcase_09 AC 306 ms
34,184 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (346 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 solve (n: int) (aArr: int array) =
    let aArr' = Array.sortDescending aArr
    let ans =
        aArr'
        |> Array.pairwise
        |> Array.filter (fun (a1, a2) -> a1 <> a2 + 1)
        |> Array.sumBy (fun (a1, a2) -> a1)
    ans + aArr'.[n - 1]

let () =
    let n = stdin.ReadLine() |> int
    let aArr = stdin.ReadLine().Split() |> Array.map int

    solve n aArr |> printfn "%d"
0