結果

問題 No.24 数当てゲーム
ユーザー curryudon08curryudon08
提出日時 2020-06-22 17:26:51
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 33 ms / 5,000 ms
コード長 635 bytes
コンパイル時間 1,039 ms
コンパイル使用メモリ 110,472 KB
実行使用メモリ 27,188 KB
最終ジャッジ日時 2024-07-03 18:43:07
合計ジャッジ時間 1,921 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
25,136 KB
testcase_01 AC 31 ms
25,136 KB
testcase_02 AC 33 ms
25,260 KB
testcase_03 AC 32 ms
25,004 KB
testcase_04 AC 32 ms
25,352 KB
testcase_05 AC 32 ms
27,036 KB
testcase_06 AC 32 ms
27,060 KB
testcase_07 AC 32 ms
27,188 KB
testcase_08 AC 32 ms
25,136 KB
testcase_09 AC 32 ms
25,136 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Linq;

namespace _0024
{
    class Program
    {
        static void Main(string[] args)
        {
            var n = int.Parse(Console.ReadLine());

            var l = Enumerable.Range(0,10);
            for(var i = 0; i < n; i++){
                var t = Console.ReadLine().Split();
                var r = t[4];
                var s = t.Take(4).Select(x => int.Parse(x));
                if(r.Equals("YES")){
                    l = s.Intersect(l);
                }else{
                    l = l.Except(s);
                }
            }

            Console.WriteLine(l.First());
        }
    }
}
0