結果

問題 No.355 数当てゲーム(2)
ユーザー mbanmban
提出日時 2017-02-17 14:42:02
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 3,504 bytes
コンパイル時間 2,382 ms
コンパイル使用メモリ 106,396 KB
実行使用メモリ 40,344 KB
平均クエリ数 5.33
最終ジャッジ日時 2023-09-23 12:44:18
合計ジャッジ時間 11,009 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
37,704 KB
testcase_01 AC 93 ms
38,152 KB
testcase_02 AC 91 ms
38,076 KB
testcase_03 AC 92 ms
38,192 KB
testcase_04 AC 94 ms
40,344 KB
testcase_05 WA -
testcase_06 AC 93 ms
37,808 KB
testcase_07 AC 91 ms
38,164 KB
testcase_08 AC 93 ms
38,056 KB
testcase_09 AC 92 ms
37,536 KB
testcase_10 AC 92 ms
38,196 KB
testcase_11 AC 91 ms
38,248 KB
testcase_12 AC 91 ms
37,916 KB
testcase_13 AC 92 ms
38,072 KB
testcase_14 WA -
testcase_15 AC 92 ms
39,944 KB
testcase_16 AC 93 ms
37,912 KB
testcase_17 AC 93 ms
37,548 KB
testcase_18 AC 93 ms
37,584 KB
testcase_19 AC 91 ms
38,260 KB
testcase_20 AC 92 ms
35,776 KB
testcase_21 AC 92 ms
38,276 KB
testcase_22 AC 93 ms
37,624 KB
testcase_23 AC 93 ms
37,708 KB
testcase_24 AC 93 ms
38,196 KB
testcase_25 AC 93 ms
37,644 KB
testcase_26 AC 93 ms
38,288 KB
testcase_27 AC 92 ms
38,180 KB
testcase_28 AC 93 ms
35,892 KB
testcase_29 AC 94 ms
37,548 KB
testcase_30 AC 94 ms
36,096 KB
testcase_31 AC 93 ms
38,064 KB
testcase_32 AC 93 ms
40,004 KB
testcase_33 AC 91 ms
37,760 KB
testcase_34 AC 92 ms
37,784 KB
testcase_35 WA -
testcase_36 AC 92 ms
40,260 KB
testcase_37 AC 93 ms
39,888 KB
testcase_38 AC 93 ms
40,100 KB
testcase_39 AC 93 ms
37,928 KB
testcase_40 AC 91 ms
38,112 KB
testcase_41 AC 93 ms
40,012 KB
testcase_42 AC 93 ms
37,704 KB
testcase_43 AC 94 ms
39,680 KB
testcase_44 AC 92 ms
37,724 KB
testcase_45 AC 92 ms
37,660 KB
testcase_46 AC 92 ms
37,616 KB
testcase_47 AC 92 ms
39,828 KB
testcase_48 AC 93 ms
37,736 KB
testcase_49 AC 93 ms
37,900 KB
testcase_50 AC 93 ms
37,596 KB
testcase_51 AC 92 ms
38,012 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.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 = 1000; 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)
    {
        if (i < 1000)
        {
            return false;
        }
        string s = i.ToString();
        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)
    {
        Console.WriteLine(string.Join(" ", i.ToString().ToArray()));
        string[] s = Console.ReadLine().Split(' ');
        int h = int.Parse(s[0]);
        int b = int.Parse(s[1]);
        return Tuple.Create(h, b);
    }
}




0