結果
問題 | No.714 回転寿司屋のシミュレート |
ユーザー | Rim_EarthLights |
提出日時 | 2019-02-06 17:13:25 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 4,674 bytes |
コンパイル時間 | 1,561 ms |
コンパイル使用メモリ | 120,032 KB |
実行使用メモリ | 31,544 KB |
最終ジャッジ日時 | 2024-06-12 02:00:57 |
合計ジャッジ時間 | 4,422 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; // No.714 回転寿司屋のシミュレート // https://yukicoder.me/problems/no/714 namespace no714 { class MainProgram { static void Main(string[] args) { // 発行される命令数 int len = -1; for (int i = 0; i < 10;) { if (int.TryParse(Console.ReadLine().Trim(), out len)) { break; } else { Console.WriteLine("-> E: not a number."); } } var customers = new List<Customer>(); for (int i = 0; i < len; i++) { var order = Console.ReadLine().Trim().Split(' '); int type = int.Parse(order[0]); switch (type) { case 0: // 入店処理 0 [席番号] [ネタ数] [ネタ] x(ネタ数)個 var tableNum = int.Parse(order[1]); var netas = new List<string>(); // 該当テーブルが使われてないかつ20以下 if(customers.Where(x => x.tableNumber == tableNum).Count() == 0) { if(tableNum < 21 && tableNum > 0) { for (int j = 3; j < order.Length; j++) { netas.Add(order[j]); } customers.Add(new Customer(tableNum, netas)); } else { Console.WriteLine("E: table number have to 1 - 20."); } } else { Console.WriteLine("E: Already use table ({0}).", tableNum); } break; case 1: // ネタ流し // テーブル番号が若い順で食べる(優先される)ためソート customers = customers.OrderBy(x => x.tableNumber).ToList(); int c_index = -1; bool eatFlg = false; foreach (var c in customers) { c_index = c.netaList.IndexOf(order[1]); // ほしいネタがあったら食べてほしいネタリストから削除する if(c_index > 0) { Console.WriteLine(c.tableNumber); c.netaList.Remove(order[1]); eatFlg = true; break; } } if(!eatFlg) { // 最後まで誰にも食べられなかった Console.WriteLine("-1"); } break; case 2: // 退店処理 var cs = customers.Where(c => c.tableNumber == int.Parse(order[1])); // 席に座っていれば退店する if (cs.Count() > 0) { customers.Remove(cs.First()); } else { Console.WriteLine("E: table number ({0}) Empty.", order[1]); } break; case 9: // デバッグ用 今いる客表示 Console.WriteLine("-----------------------"); foreach (var c in customers) { Console.WriteLine("table: {0}", c.tableNumber); Console.Write("neta : "); foreach(var neta in c.netaList) { Console.Write("{0} ", neta); } Console.WriteLine("\n-----------------------"); } break; default: break; } } // Console.WriteLine("exit for press any key"); // Console.ReadKey(); } } // 客クラス テーブル番号とほしいネタリスト保存 public class Customer { public int tableNumber { get; } public List<string> netaList { get; } public Customer(int num, List<string> neta) { tableNumber = num; netaList = neta; } } }