結果

問題 No.893 お客様を誘導せよ
ユーザー guriceringuricerin
提出日時 2020-01-13 15:33:01
言語 F#
(F# 4.0)
結果
AC  
実行時間 452 ms / 2,000 ms
コード長 1,037 bytes
コンパイル時間 15,156 ms
コンパイル使用メモリ 191,056 KB
実行使用メモリ 59,552 KB
最終ジャッジ日時 2024-12-17 19:44:46
合計ジャッジ時間 21,286 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 316 ms
35,000 KB
testcase_01 AC 314 ms
34,764 KB
testcase_02 AC 361 ms
38,556 KB
testcase_03 AC 381 ms
46,736 KB
testcase_04 AC 375 ms
46,600 KB
testcase_05 AC 363 ms
44,896 KB
testcase_06 AC 348 ms
42,268 KB
testcase_07 AC 311 ms
34,612 KB
testcase_08 AC 452 ms
59,552 KB
testcase_09 AC 328 ms
36,604 KB
testcase_10 AC 315 ms
34,852 KB
testcase_11 AC 326 ms
35,780 KB
testcase_12 AC 328 ms
36,804 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (339 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