結果
問題 | No.893 お客様を誘導せよ |
ユーザー | bluemegane |
提出日時 | 2020-09-06 16:55:10 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 72 ms / 2,000 ms |
コード長 | 1,023 bytes |
コンパイル時間 | 2,007 ms |
コンパイル使用メモリ | 105,856 KB |
実行使用メモリ | 25,472 KB |
最終ジャッジ日時 | 2024-05-06 21:14:48 |
合計ジャッジ時間 | 2,888 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 23 ms
19,072 KB |
testcase_01 | AC | 23 ms
18,688 KB |
testcase_02 | AC | 30 ms
20,256 KB |
testcase_03 | AC | 49 ms
24,064 KB |
testcase_04 | AC | 48 ms
23,808 KB |
testcase_05 | AC | 47 ms
23,424 KB |
testcase_06 | AC | 39 ms
21,760 KB |
testcase_07 | AC | 23 ms
18,816 KB |
testcase_08 | AC | 72 ms
25,472 KB |
testcase_09 | AC | 24 ms
18,944 KB |
testcase_10 | AC | 23 ms
18,688 KB |
testcase_11 | AC | 25 ms
19,200 KB |
testcase_12 | AC | 26 ms
19,328 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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]; for (int i = 0; i < n; i++) q[i] = new Queue<int>(); var tc = 0; for (int i = 0; i < n; i++) { 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)); } }