結果

問題 No.355 数当てゲーム(2)
ユーザー mbanmban
提出日時 2017-02-17 14:46:16
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 3,520 bytes
コンパイル時間 2,477 ms
コンパイル使用メモリ 105,860 KB
実行使用メモリ 40,372 KB
平均クエリ数 5.52
最終ジャッジ日時 2023-09-24 00:54:33
合計ジャッジ時間 10,898 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
40,372 KB
testcase_01 AC 98 ms
35,864 KB
testcase_02 AC 100 ms
39,464 KB
testcase_03 AC 97 ms
37,988 KB
testcase_04 AC 98 ms
38,112 KB
testcase_05 AC 98 ms
40,224 KB
testcase_06 AC 98 ms
37,712 KB
testcase_07 AC 98 ms
37,852 KB
testcase_08 AC 96 ms
38,224 KB
testcase_09 AC 99 ms
36,076 KB
testcase_10 AC 98 ms
37,644 KB
testcase_11 AC 98 ms
39,956 KB
testcase_12 AC 97 ms
37,632 KB
testcase_13 AC 98 ms
38,304 KB
testcase_14 AC 98 ms
40,140 KB
testcase_15 AC 97 ms
38,236 KB
testcase_16 AC 99 ms
38,228 KB
testcase_17 AC 100 ms
37,932 KB
testcase_18 AC 99 ms
39,764 KB
testcase_19 AC 98 ms
37,560 KB
testcase_20 AC 97 ms
38,300 KB
testcase_21 AC 99 ms
38,364 KB
testcase_22 AC 98 ms
37,644 KB
testcase_23 AC 99 ms
37,852 KB
testcase_24 AC 98 ms
40,112 KB
testcase_25 AC 98 ms
40,244 KB
testcase_26 AC 98 ms
38,320 KB
testcase_27 AC 98 ms
37,944 KB
testcase_28 AC 101 ms
39,792 KB
testcase_29 AC 99 ms
38,016 KB
testcase_30 AC 99 ms
37,648 KB
testcase_31 AC 99 ms
39,792 KB
testcase_32 AC 99 ms
36,168 KB
testcase_33 AC 99 ms
38,056 KB
testcase_34 AC 100 ms
37,600 KB
testcase_35 AC 92 ms
37,432 KB
testcase_36 AC 98 ms
38,076 KB
testcase_37 AC 99 ms
38,196 KB
testcase_38 AC 98 ms
38,088 KB
testcase_39 AC 98 ms
38,088 KB
testcase_40 AC 98 ms
39,652 KB
testcase_41 AC 99 ms
38,000 KB
testcase_42 AC 101 ms
39,988 KB
testcase_43 AC 99 ms
37,724 KB
testcase_44 AC 99 ms
37,588 KB
testcase_45 AC 99 ms
40,088 KB
testcase_46 AC 99 ms
37,700 KB
testcase_47 AC 100 ms
38,020 KB
testcase_48 AC 99 ms
39,592 KB
testcase_49 AC 101 ms
39,648 KB
testcase_50 AC 100 ms
37,652 KB
testcase_51 AC 99 ms
36,320 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 = 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 = string.Format("{0:D4}", i);
        string sj = string.Format("{0:D4}", j);
        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