結果
問題 | No.989 N×Mマス計算(K以上) |
ユーザー | ikd |
提出日時 | 2020-06-06 22:36:31 |
言語 | F# (F# 4.0) |
結果 |
AC
|
実行時間 | 595 ms / 2,000 ms |
コード長 | 873 bytes |
コンパイル時間 | 7,255 ms |
コンパイル使用メモリ | 199,124 KB |
実行使用メモリ | 72,960 KB |
最終ジャッジ日時 | 2024-12-23 14:11:23 |
合計ジャッジ時間 | 16,874 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 358 ms
36,060 KB |
testcase_01 | AC | 357 ms
35,040 KB |
testcase_02 | AC | 359 ms
35,588 KB |
testcase_03 | AC | 358 ms
36,080 KB |
testcase_04 | AC | 362 ms
35,940 KB |
testcase_05 | AC | 358 ms
35,456 KB |
testcase_06 | AC | 364 ms
35,068 KB |
testcase_07 | AC | 360 ms
35,456 KB |
testcase_08 | AC | 357 ms
36,084 KB |
testcase_09 | AC | 358 ms
35,060 KB |
testcase_10 | AC | 525 ms
69,512 KB |
testcase_11 | AC | 468 ms
62,080 KB |
testcase_12 | AC | 540 ms
68,992 KB |
testcase_13 | AC | 412 ms
48,256 KB |
testcase_14 | AC | 595 ms
72,960 KB |
testcase_15 | AC | 439 ms
55,536 KB |
testcase_16 | AC | 494 ms
63,872 KB |
testcase_17 | AC | 411 ms
47,220 KB |
testcase_18 | AC | 474 ms
61,276 KB |
testcase_19 | AC | 465 ms
63,872 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (253 ms)。 MSBuild のバージョン 17.9.6+a4ecab324 (.NET) /home/judge/data/code/Main.fs(17,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/
ソースコード
open System // x <= arr[i] let lowerBound x (arr: 'a []) = // arr[lf] < x <= arr[rg] let rec solve lf rg = if rg - lf <= 1 then rg else let mid = (rg + lf) / 2 if arr.[mid] < x then solve mid rg else solve lf mid solve -1 arr.Length [<EntryPoint>] let main _ = let [| n; m; k |] = stdin.ReadLine().Split(' ') |> Array.map int64 let line = stdin.ReadLine().Split(' ') let op = Array.head line |> Seq.head let b = Array.tail line |> Array.map int64 |> Array.sort let a = [| for _ in 1L .. n -> stdin.ReadLine() |> int64 |] a |> Array.sumBy (fun x -> let y = if op = '+' then k - x else (k + x - 1L) /x let i = b |> lowerBound y |> int64 m - i) |> printfn "%d" 0