結果
問題 | No.989 N×Mマス計算(K以上) |
ユーザー | ikd |
提出日時 | 2020-06-06 22:36:31 |
言語 | F# (F# 4.0) |
結果 |
AC
|
実行時間 | 579 ms / 2,000 ms |
コード長 | 873 bytes |
コンパイル時間 | 6,904 ms |
コンパイル使用メモリ | 200,748 KB |
実行使用メモリ | 73,088 KB |
最終ジャッジ日時 | 2024-06-06 03:07:17 |
合計ジャッジ時間 | 16,145 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 346 ms
35,040 KB |
testcase_01 | AC | 341 ms
35,044 KB |
testcase_02 | AC | 346 ms
35,328 KB |
testcase_03 | AC | 348 ms
35,440 KB |
testcase_04 | AC | 345 ms
35,144 KB |
testcase_05 | AC | 350 ms
35,324 KB |
testcase_06 | AC | 349 ms
34,936 KB |
testcase_07 | AC | 343 ms
35,452 KB |
testcase_08 | AC | 344 ms
35,056 KB |
testcase_09 | AC | 342 ms
35,304 KB |
testcase_10 | AC | 506 ms
69,408 KB |
testcase_11 | AC | 439 ms
61,824 KB |
testcase_12 | AC | 507 ms
68,992 KB |
testcase_13 | AC | 392 ms
48,216 KB |
testcase_14 | AC | 579 ms
73,088 KB |
testcase_15 | AC | 420 ms
55,808 KB |
testcase_16 | AC | 476 ms
63,872 KB |
testcase_17 | AC | 393 ms
46,936 KB |
testcase_18 | AC | 462 ms
60,836 KB |
testcase_19 | AC | 450 ms
63,744 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (237 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