結果

問題 No.893 お客様を誘導せよ
ユーザー bluemeganebluemegane
提出日時 2020-09-06 17:03:12
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 999 bytes
コンパイル時間 1,765 ms
コンパイル使用メモリ 105,472 KB
実行使用メモリ 25,472 KB
最終ジャッジ日時 2024-05-06 21:15:10
合計ジャッジ時間 2,818 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
18,816 KB
testcase_01 AC 23 ms
18,688 KB
testcase_02 AC 30 ms
20,140 KB
testcase_03 AC 49 ms
23,936 KB
testcase_04 AC 48 ms
23,552 KB
testcase_05 AC 45 ms
23,552 KB
testcase_06 AC 38 ms
22,016 KB
testcase_07 AC 23 ms
18,816 KB
testcase_08 AC 69 ms
25,472 KB
testcase_09 AC 26 ms
19,072 KB
testcase_10 AC 25 ms
18,816 KB
testcase_11 AC 24 ms
19,072 KB
testcase_12 AC 25 ms
19,328 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Linq;
using System.Collections.Generic;
using System;

public class Hello
{
    static void Main()
    {
        var n = int.Parse(Console.ReadLine().Trim());
        var q = new Queue<int>[n];
        var tc = 0;
        for (int i = 0; i < n; i++)
        {
            q[i] = new Queue<int>();
            string[] line = Console.ReadLine().Trim().Split(' ');
            var m = int.Parse(line[0]);
            tc += m;
            for (int j = 0; j < m; j++)
                q[i].Enqueue(int.Parse(line[j + 1]));
        }
        getAns(n, q, tc);
    }
    static void getAns(int n, Queue<int>[] q, int tc)
    {
        var ans = new int[tc];
        var ansp = 0;
        var p = 0;
        while (true)
        {
            if (q[p].Count() > 0)
            {
                ans[ansp++] = q[p].Dequeue();
                if (ansp == tc) break;
            }
            p++;
            if (p == n) p = 0;
        }
        Console.WriteLine(string.Join(" ", ans));
    }
}
0