結果

問題 No.1285 ゴミ捨て
ユーザー thglaflsthglafls
提出日時 2023-05-01 08:28:07
言語 F#
(F# 4.0)
結果
AC  
実行時間 383 ms / 2,000 ms
コード長 432 bytes
コンパイル時間 15,879 ms
コンパイル使用メモリ 185,688 KB
実行使用メモリ 43,068 KB
最終ジャッジ日時 2024-11-20 09:08:53
合計ジャッジ時間 21,820 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 346 ms
35,256 KB
testcase_01 AC 346 ms
34,992 KB
testcase_02 AC 347 ms
35,240 KB
testcase_03 AC 348 ms
35,368 KB
testcase_04 AC 345 ms
34,996 KB
testcase_05 AC 350 ms
35,244 KB
testcase_06 AC 348 ms
35,376 KB
testcase_07 AC 381 ms
42,720 KB
testcase_08 AC 349 ms
35,484 KB
testcase_09 AC 365 ms
38,536 KB
testcase_10 AC 382 ms
41,436 KB
testcase_11 AC 377 ms
41,464 KB
testcase_12 AC 369 ms
39,592 KB
testcase_13 AC 368 ms
39,840 KB
testcase_14 AC 379 ms
42,388 KB
testcase_15 AC 375 ms
40,344 KB
testcase_16 AC 358 ms
37,076 KB
testcase_17 AC 359 ms
37,272 KB
testcase_18 AC 357 ms
37,248 KB
testcase_19 AC 360 ms
38,560 KB
testcase_20 AC 356 ms
35,832 KB
testcase_21 AC 360 ms
37,488 KB
testcase_22 AC 383 ms
43,068 KB
testcase_23 AC 383 ms
43,024 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (562 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 parity = a.[0] &&& 1
    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