結果

問題 No.355 数当てゲーム(2)
ユーザー mbanmban
提出日時 2017-02-17 14:44:42
言語 C#(csc)
(csc 3.9.0)
結果
RE  
実行時間 -
コード長 3,486 bytes
コンパイル時間 2,341 ms
コンパイル使用メモリ 106,060 KB
実行使用メモリ 41,648 KB
平均クエリ数 1.00
最終ジャッジ日時 2023-09-23 12:44:50
合計ジャッジ時間 18,804 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 AC 90 ms
37,816 KB
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 RE -
testcase_43 RE -
testcase_44 RE -
testcase_45 RE -
testcase_46 RE -
testcase_47 RE -
testcase_48 RE -
testcase_49 RE -
testcase_50 RE -
testcase_51 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.Collections;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Text;
using System.Text.RegularExpressions;
using System.Linq;
using System.IO;

class Program
{
    static void Main(string[] args)
    {
        new Magatro().Solve();
    }
}

public class Scanner
{
    private StreamReader Sr;

    private string[] S;
    private int Index;
    private const char Separator = ' ';

    public Scanner(Stream source)
    {
        Index = 0;
        S = new string[0];
        Sr = new StreamReader(source);
    }

    private string[] Line()
    {
        return Sr.ReadLine().Split(Separator);
    }

    public string Next()
    {
        string result;
        if (Index >= S.Length)
        {
            S = Line();
            Index = 0;
        }
        result = S[Index];
        Index++;
        return result;
    }
    public int NextInt()
    {
        return int.Parse(Next());
    }
    public double NextDouble()
    {
        return double.Parse(Next());
    }
    public long NextLong()
    {
        return long.Parse(Next());
    }
    public decimal NextDecimal()
    {
        return decimal.Parse(Next());
    }
    public string[] StringArray(int index = 0)
    {
        Next();
        Index = S.Length;
        return S.Skip(index).ToArray();
    }
    public int[] IntArray(int index = 0)
    {
        return StringArray(index).Select(int.Parse).ToArray();
    }
    public long[] LongArray(int index = 0)
    {
        return StringArray(index).Select(long.Parse).ToArray();
    }
    public bool EndOfStream
    {
        get { return Sr.EndOfStream; }
    }
}

public class Magatro
{
    private Scanner Cin;

    public void Solve()
    {
        Cin = new Scanner(Console.OpenStandardInput());
        bool[] b = new bool[10000];
        for (int i = 0; i < 10000; i++)
        {
            b[i] = Check(i);
        }
        for (int i = 0; i < 10000; i++)
        {
            if (!b[i]) continue;
            var t = Write(i);
            if (t.Item1 == 4 && t.Item2 == 0)
            {
                return;
            }
            for (int j =i+1; j < 10000; j++)
            {
                if (!b[j]) continue;
                var p = Count(i, j);
                if ((t.Item1 != p.Item1) || t.Item2 != p.Item2)
                {
                    b[j] = false;
                }
            }
            b[i] = false;
        }
        //throw new Exception();
    }

    private bool Check(int i)
    {
        string s = string.Format("{0:D4}",i);
        for (int j = 0; j < 3; j++)
        {
            for (int k = j+1; k < 4; k++)
            {
                if (s[j] == s[k])
                {
                    return false;
                }
            }
        }
        return true;
    }

    private Tuple<int, int> Count(int i, int j)
    {
        int h = 0;
        int b = 0;
        string si = i.ToString();
        string sj = j.ToString();
        for (int k = 0; k < 4; k++)
        {
            if (sj.Contains(si[k])) b++;
            if (si[k] == sj[k]) h++;
        }
        return Tuple.Create(h, b - h);
    }

    private Tuple<int, int> Write(int i)
    {
        char[] arr = string.Format("{0:D4}", i).ToArray();
        Console.WriteLine(string.Join(" ", arr));
        string[] s = Console.ReadLine().Split(' ');
        int h = int.Parse(s[0]);
        int b = int.Parse(s[1]);
        return Tuple.Create(h, b);
    }
}




0