結果

問題 No.893 お客様を誘導せよ
ユーザー kuuso1kuuso1
提出日時 2019-09-27 23:07:54
言語 F#
(F# 4.0)
結果
AC  
実行時間 325 ms / 2,000 ms
コード長 801 bytes
コンパイル時間 13,505 ms
コンパイル使用メモリ 200,232 KB
実行使用メモリ 70,288 KB
最終ジャッジ日時 2024-09-25 01:22:11
合計ジャッジ時間 15,927 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
31,488 KB
testcase_01 AC 85 ms
31,744 KB
testcase_02 AC 113 ms
40,316 KB
testcase_03 AC 193 ms
61,360 KB
testcase_04 AC 185 ms
61,340 KB
testcase_05 AC 176 ms
61,412 KB
testcase_06 AC 140 ms
51,584 KB
testcase_07 AC 76 ms
31,104 KB
testcase_08 AC 325 ms
70,288 KB
testcase_09 AC 86 ms
32,512 KB
testcase_10 AC 85 ms
31,712 KB
testcase_11 AC 85 ms
32,000 KB
testcase_12 AC 87 ms
32,768 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (296 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 ri () = stdin.ReadLine() |> int
let ria () = stdin.ReadLine().Split() |> Array.map int

type Sol() =
    member this.Solve() = 
        let N = ri()
        let P = Array.zeroCreate<int> N
        let A = Array.zeroCreate<int []> N
        for i in 0..N-1 do
            let d = ria()
            P.[i] <- d.[0]
            A.[i] <- d.[1..]
        
        let l = [ 
            for i in 0..N-1 do
                for j in 0..P.[i]-1 do 
                     yield (A.[i].[j], i, j)]
        
        let result = l |> List.sortWith (fun (n, i, j) (m, i1, j1) -> (if j <> j1 then j.CompareTo(j1) else i.CompareTo(i1)) ) |> List.map (fun (n, i, j) -> n)
        
        String.Join(" ", result)
        |> printfn "%s"
        
        
        
let mySol = new Sol()
mySol.Solve()
0