結果

問題 No.893 お客様を誘導せよ
ユーザー guriceringuricerin
提出日時 2020-01-13 15:33:01
言語 F#
(F# 4.0)
結果
AC  
実行時間 450 ms / 2,000 ms
コード長 1,037 bytes
コンパイル時間 13,438 ms
コンパイル使用メモリ 189,064 KB
実行使用メモリ 58,852 KB
最終ジャッジ日時 2024-05-10 00:45:28
合計ジャッジ時間 19,264 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 301 ms
34,476 KB
testcase_01 AC 294 ms
35,292 KB
testcase_02 AC 314 ms
38,556 KB
testcase_03 AC 362 ms
46,616 KB
testcase_04 AC 352 ms
46,472 KB
testcase_05 AC 359 ms
45,416 KB
testcase_06 AC 334 ms
42,244 KB
testcase_07 AC 298 ms
35,424 KB
testcase_08 AC 450 ms
58,852 KB
testcase_09 AC 311 ms
36,660 KB
testcase_10 AC 309 ms
34,488 KB
testcase_11 AC 308 ms
35,924 KB
testcase_12 AC 314 ms
36,692 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
open System.Collections.Generic

[<AutoOpen>]
module Cin =
    let read f = stdin.ReadLine() |> f
    let reada f = stdin.ReadLine().Split() |> Array.map f
    let readChars() = read string |> Seq.toArray
    let readInts() = readChars() |> Array.map (fun x -> Convert.ToInt32(x.ToString()))

[<AutoOpen>]
module Cout =
    let writer = new IO.StreamWriter(new IO.BufferedStream(Console.OpenStandardOutput()))
    let print (s: string) = writer.Write s
    let println (s: string) = writer.WriteLine s
    let inline puts (s: ^a) = string s |> println

let main() =
    let N = read int
    let AS = Array.init N (fun _ -> Queue<int>())
    let mutable sum = 0
    for i in 0 .. N - 1 do
        let x = reada int
        let p = x.[0]
        sum <- sum + p
        for j in 1 .. p do
            AS.[i].Enqueue(x.[j])

    for _ in 0 .. sum - 1 do
        for A in AS do
            if A.Count > 0 then
                let a = A.Dequeue()
                sprintf "%d " a |> print
    puts ""

    ()

main()
writer.Close()
0