結果
問題 | No.714 回転寿司屋のシミュレート |
ユーザー | Charlotte8687 |
提出日時 | 2018-11-28 15:38:54 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 54 ms / 2,000 ms |
コード長 | 2,801 bytes |
コンパイル時間 | 3,901 ms |
コンパイル使用メモリ | 114,500 KB |
実行使用メモリ | 28,868 KB |
最終ジャッジ日時 | 2024-06-26 22:56:22 |
合計ジャッジ時間 | 6,517 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 34 ms
26,800 KB |
testcase_01 | AC | 33 ms
26,500 KB |
testcase_02 | AC | 33 ms
24,240 KB |
testcase_03 | AC | 34 ms
26,620 KB |
testcase_04 | AC | 35 ms
27,012 KB |
testcase_05 | AC | 37 ms
26,480 KB |
testcase_06 | AC | 40 ms
26,496 KB |
testcase_07 | AC | 46 ms
26,748 KB |
testcase_08 | AC | 54 ms
28,724 KB |
testcase_09 | AC | 42 ms
28,748 KB |
testcase_10 | AC | 40 ms
26,544 KB |
testcase_11 | AC | 40 ms
28,612 KB |
testcase_12 | AC | 40 ms
26,800 KB |
testcase_13 | AC | 40 ms
24,504 KB |
testcase_14 | AC | 39 ms
28,536 KB |
testcase_15 | AC | 39 ms
26,540 KB |
testcase_16 | AC | 40 ms
26,624 KB |
testcase_17 | AC | 39 ms
26,492 KB |
testcase_18 | AC | 40 ms
28,868 KB |
testcase_19 | AC | 38 ms
26,740 KB |
testcase_20 | AC | 38 ms
24,632 KB |
testcase_21 | AC | 38 ms
26,420 KB |
testcase_22 | AC | 37 ms
26,496 KB |
testcase_23 | AC | 36 ms
26,736 KB |
testcase_24 | AC | 36 ms
26,292 KB |
testcase_25 | AC | 37 ms
26,676 KB |
testcase_26 | AC | 37 ms
26,672 KB |
testcase_27 | AC | 35 ms
26,744 KB |
testcase_28 | AC | 36 ms
26,736 KB |
testcase_29 | AC | 36 ms
26,616 KB |
testcase_30 | AC | 33 ms
28,564 KB |
testcase_31 | AC | 34 ms
28,432 KB |
testcase_32 | AC | 35 ms
28,700 KB |
testcase_33 | AC | 33 ms
26,608 KB |
testcase_34 | AC | 33 ms
26,668 KB |
コンパイルメッセージ
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; namespace StudyProgram { class Program { static void Main(string[] args) { var restaurant = new Restaurant(); string line; List<string> inputs = new List<string>(); while (!string.IsNullOrEmpty(line = Console.ReadLine())) { inputs.Add(line); } CheckData(inputs, restaurant); } static void CheckData(List<string> inputs, Restaurant restaurant) { Person person = null; foreach (var line in inputs) { string[] input = line.Split(' '); string dataNo = input[0]; switch (dataNo) { case "0": person = new Person(int.Parse(input[1]), GetFoods(input)); restaurant.AddPerson(person); break; case "1": restaurant.ProvideFood(input[1]); break; case "2": restaurant.LeavePerson(int.Parse(input[1])); break; default: break; } } } static IEnumerable<string> GetFoods(string[] order) { foreach (var food in order) { if (!int.TryParse(food, out int num)) yield return food; } } } class Person { public int Seat { get; private set; } public List<string> Foods { get; private set; } public Person(int seat, IEnumerable<string> foods) { this.Seat = seat; this.Foods = foods.ToList(); } public bool EatFood(string food) { if (this.Foods.Contains(food)) { Foods.Remove(food); return true; } else { return false; } } } class Restaurant { SortedList<int, Person> persons = new SortedList<int, Person>(); public int GetPersonNum() => persons.Count; public void AddPerson(Person person) => persons?.Add(person.Seat, person); public void LeavePerson(int seat) => persons?.Remove(seat); public void ProvideFood(string food) { foreach (var person in persons) { if (person.Value.EatFood(food)) { Console.WriteLine(person.Key); return; } } Console.WriteLine("-1"); } } }