結果

問題 No.1110 好きな歌
ユーザー ikdikd
提出日時 2020-07-10 23:40:10
言語 F#
(F# 4.0)
結果
AC  
実行時間 1,274 ms / 5,000 ms
コード長 532 bytes
コンパイル時間 16,186 ms
コンパイル使用メモリ 207,168 KB
実行使用メモリ 65,580 KB
最終ジャッジ日時 2024-10-11 19:27:21
合計ジャッジ時間 53,318 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 342 ms
35,516 KB
testcase_01 AC 340 ms
34,220 KB
testcase_02 AC 342 ms
35,516 KB
testcase_03 AC 338 ms
34,712 KB
testcase_04 AC 338 ms
35,116 KB
testcase_05 AC 339 ms
34,472 KB
testcase_06 AC 339 ms
34,456 KB
testcase_07 AC 339 ms
34,564 KB
testcase_08 AC 340 ms
35,528 KB
testcase_09 AC 343 ms
35,116 KB
testcase_10 AC 344 ms
35,276 KB
testcase_11 AC 342 ms
35,272 KB
testcase_12 AC 341 ms
35,264 KB
testcase_13 AC 343 ms
35,152 KB
testcase_14 AC 345 ms
34,664 KB
testcase_15 AC 343 ms
35,516 KB
testcase_16 AC 345 ms
34,868 KB
testcase_17 AC 348 ms
34,940 KB
testcase_18 AC 343 ms
34,840 KB
testcase_19 AC 348 ms
34,500 KB
testcase_20 AC 349 ms
34,680 KB
testcase_21 AC 346 ms
34,848 KB
testcase_22 AC 349 ms
34,780 KB
testcase_23 AC 346 ms
35,276 KB
testcase_24 AC 885 ms
59,812 KB
testcase_25 AC 979 ms
60,476 KB
testcase_26 AC 690 ms
58,664 KB
testcase_27 AC 978 ms
60,368 KB
testcase_28 AC 723 ms
59,220 KB
testcase_29 AC 1,099 ms
64,836 KB
testcase_30 AC 715 ms
59,408 KB
testcase_31 AC 573 ms
50,076 KB
testcase_32 AC 1,193 ms
65,148 KB
testcase_33 AC 763 ms
59,468 KB
testcase_34 AC 902 ms
59,792 KB
testcase_35 AC 1,239 ms
65,280 KB
testcase_36 AC 440 ms
41,304 KB
testcase_37 AC 604 ms
52,748 KB
testcase_38 AC 1,094 ms
65,580 KB
testcase_39 AC 896 ms
59,848 KB
testcase_40 AC 1,029 ms
62,952 KB
testcase_41 AC 400 ms
38,280 KB
testcase_42 AC 1,130 ms
65,064 KB
testcase_43 AC 1,100 ms
64,708 KB
testcase_44 AC 1,212 ms
65,388 KB
testcase_45 AC 1,240 ms
65,380 KB
testcase_46 AC 1,228 ms
65,480 KB
testcase_47 AC 1,262 ms
65,068 KB
testcase_48 AC 1,261 ms
65,320 KB
testcase_49 AC 1,195 ms
65,328 KB
testcase_50 AC 1,250 ms
65,444 KB
testcase_51 AC 1,245 ms
65,452 KB
testcase_52 AC 1,252 ms
65,200 KB
testcase_53 AC 1,274 ms
65,192 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (283 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
/home/judge/data/code/Main.fs(16,9): warning FS0025: この式のパターン マッチが不完全です たとえば、値 '[|_; _; _|]' はパターンに含まれないケースを示す可能性があります。 [/home/judge/data/code/main.fsproj]
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

open System

let lowerbound (a: int array) (x: int) =
    // a.[ok] <= x
    let rec f ok ng =
        if ng - ok = 1 then
            ok
        else
            let mid = (ok + ng) / 2
            if a.[mid] <= x then f mid ng else f ok mid

    f -1 a.Length

[<EntryPoint>]
let main _ =
    let [| n; d |] = stdin.ReadLine().Split() |> Array.map int

    let a =
        [| for _ in 1 .. n -> stdin.ReadLine() |> int |]

    let b = a |> Array.sort

    a |> Array.iter (fun x -> printfn "%d" <| 1 + lowerbound b (x - d))
    0
0