結果

問題 No.647 明太子
ユーザー taktak
提出日時 2018-03-31 00:19:00
言語 F#
(F# 4.0)
結果
AC  
実行時間 1,009 ms / 4,500 ms
コード長 841 bytes
コンパイル時間 13,496 ms
コンパイル使用メモリ 196,120 KB
実行使用メモリ 129,724 KB
最終ジャッジ日時 2024-06-27 02:54:43
合計ジャッジ時間 25,181 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 340 ms
35,944 KB
testcase_01 AC 344 ms
35,696 KB
testcase_02 AC 337 ms
34,932 KB
testcase_03 AC 339 ms
35,836 KB
testcase_04 AC 348 ms
35,688 KB
testcase_05 AC 339 ms
35,556 KB
testcase_06 AC 342 ms
35,952 KB
testcase_07 AC 344 ms
34,860 KB
testcase_08 AC 343 ms
35,036 KB
testcase_09 AC 358 ms
36,488 KB
testcase_10 AC 361 ms
37,316 KB
testcase_11 AC 353 ms
36,040 KB
testcase_12 AC 364 ms
36,960 KB
testcase_13 AC 374 ms
38,252 KB
testcase_14 AC 650 ms
59,212 KB
testcase_15 AC 391 ms
39,828 KB
testcase_16 AC 358 ms
36,740 KB
testcase_17 AC 722 ms
63,920 KB
testcase_18 AC 749 ms
64,748 KB
testcase_19 AC 442 ms
38,344 KB
testcase_20 AC 456 ms
37,808 KB
testcase_21 AC 381 ms
36,204 KB
testcase_22 AC 1,009 ms
129,724 KB
testcase_23 AC 348 ms
35,780 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (387 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 #

open System

let read1() = Console.ReadLine() |> int
let read2() = let t = Console.ReadLine().Split() |> Array.map (int)
              in (t.[0],t.[1])

let N  = read1()
let AB = Array.init N (fun _ -> read2())
let M  = read1()
let XY = Array.init M (fun _ -> read2())
         |> Array.indexed
         |> Array.map (fun (idx,tup) -> (idx+1,tup))

let buy =  
    AB
    |> Array.map(fun (a,b) ->
        XY
        |> Array.where (fun (_,(x,y)) -> x<=a && b<=y)
        |> Array.map   (fun (idx,_) -> idx))
    |> Array.concat
    |> function
        | [||] -> [|0|]
        | x    -> x
let cnts = 
    buy 
    |> Array.countBy (fun x -> x)
let maxCnt = 
    cnts
    |> Array.maxBy (fun (_,cnt) -> cnt)
    |> snd
cnts
|> Array.where (fun (_,cnt) -> cnt=maxCnt)
|> Array.map   (fun (n,_) -> n)
|> Array.sort
|> Array.iter (printfn "%i")
0