結果
問題 | No.24 数当てゲーム |
ユーザー | TaK7907 |
提出日時 | 2017-10-22 12:10:39 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 33 ms / 5,000 ms |
コード長 | 2,266 bytes |
コンパイル時間 | 1,313 ms |
コンパイル使用メモリ | 114,120 KB |
実行使用メモリ | 27,212 KB |
最終ジャッジ日時 | 2024-11-21 13:41:59 |
合計ジャッジ時間 | 2,137 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
25,264 KB |
testcase_01 | AC | 30 ms
27,072 KB |
testcase_02 | AC | 31 ms
24,932 KB |
testcase_03 | AC | 32 ms
26,960 KB |
testcase_04 | AC | 33 ms
27,212 KB |
testcase_05 | AC | 31 ms
24,916 KB |
testcase_06 | AC | 32 ms
26,992 KB |
testcase_07 | AC | 29 ms
24,920 KB |
testcase_08 | AC | 30 ms
24,792 KB |
testcase_09 | AC | 31 ms
25,172 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 yukicode { public class Program { public static void GetFirstPrediction(ref List<uint> nums, ref string answer, ref List<uint> prediction) { if (answer == "YES") prediction = nums; else { for (uint i = 0; i <= 9; ++i) { if (nums.IndexOf( i ) == -1) prediction.Add( i ); } } } public static void Predict(ref List<uint> nums, ref string answer, ref List<uint> prediction) { if (answer == "YES") { prediction = prediction.Intersect( nums ).ToList(); } else { prediction = prediction.Except( nums ).ToList(); } } public static uint Solver(System.IO.TextReader reader) { uint n = uint.Parse( reader.ReadLine() ); var possibleNumbers = new List<uint>(); for (var i = 0; i != n; ++i) { var buf = reader.ReadLine().Split(); var nums = buf.Take( 4 ).ToList().ConvertAll( uint.Parse ); if (i == 0) { GetFirstPrediction( ref nums, ref buf[ 4 ], ref possibleNumbers ); } else { Predict( ref nums, ref buf[ 4 ], ref possibleNumbers ); } } return possibleNumbers[0]; } private static void Main() { Console.WriteLine( Solver( Console.In ) ); } } //--- MyLib --- public class MyLib { public static string Ordinalization(int num) { string surfix = "stndrdth"; return string.Format( "{0}{1}", num, ( 0 < num % 10 && num % 10 <= 4 ) && ( ( num % 100 ) / 10 != 1 ) ? surfix.Substring( ( num % 10 - 1 ) * 2, 2 ) : surfix.Substring( 6 ) ); } public static List<int> GetIntList(string input, char delimitor) { return input.Split( delimitor ).ToList<string>().ConvertAll<int>( int.Parse ); } public static List<int> GetIntList(string input, char[] delimitors) { return input.Split( delimitors ).ToList<string>().ConvertAll<int>( int.Parse ); } } }