結果

問題 No.1285 ゴミ捨て
ユーザー thglaflsthglafls
提出日時 2023-05-01 08:29:13
言語 F#
(F# 4.0)
結果
AC  
実行時間 385 ms / 2,000 ms
コード長 404 bytes
コンパイル時間 8,489 ms
コンパイル使用メモリ 184,928 KB
実行使用メモリ 43,168 KB
最終ジャッジ日時 2024-11-20 09:09:42
合計ジャッジ時間 17,768 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 346 ms
35,180 KB
testcase_01 AC 346 ms
35,312 KB
testcase_02 AC 349 ms
35,380 KB
testcase_03 AC 350 ms
35,376 KB
testcase_04 AC 346 ms
34,996 KB
testcase_05 AC 349 ms
35,432 KB
testcase_06 AC 346 ms
35,056 KB
testcase_07 AC 382 ms
42,292 KB
testcase_08 AC 347 ms
35,608 KB
testcase_09 AC 364 ms
38,924 KB
testcase_10 AC 379 ms
42,160 KB
testcase_11 AC 374 ms
41,548 KB
testcase_12 AC 370 ms
38,908 KB
testcase_13 AC 367 ms
39,676 KB
testcase_14 AC 378 ms
42,732 KB
testcase_15 AC 373 ms
40,544 KB
testcase_16 AC 357 ms
37,252 KB
testcase_17 AC 356 ms
37,268 KB
testcase_18 AC 357 ms
37,128 KB
testcase_19 AC 364 ms
38,824 KB
testcase_20 AC 360 ms
36,812 KB
testcase_21 AC 360 ms
37,348 KB
testcase_22 AC 382 ms
43,168 KB
testcase_23 AC 385 ms
43,136 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (265 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: int[]) =
    let a_sorted = Array.append (Array.sort a) [| -1 |]
    let index = [| 1 .. a_sorted.Length - 1 |]

    if (Array.exists (fun x -> a_sorted.[x] - a_sorted.[x - 1] = 1) index) then
        2
    else
        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