結果

問題 No.437 cwwゲーム
ユーザー mbanmban
提出日時 2017-01-09 22:13:28
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 2,205 bytes
コンパイル時間 1,947 ms
コンパイル使用メモリ 114,636 KB
実行使用メモリ 26,540 KB
最終ジャッジ日時 2024-05-10 03:29:05
合計ジャッジ時間 4,120 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
18,432 KB
testcase_01 AC 25 ms
18,432 KB
testcase_02 AC 28 ms
18,816 KB
testcase_03 AC 27 ms
18,816 KB
testcase_04 AC 27 ms
18,432 KB
testcase_05 AC 29 ms
18,688 KB
testcase_06 AC 35 ms
19,968 KB
testcase_07 AC 37 ms
20,096 KB
testcase_08 AC 33 ms
19,200 KB
testcase_09 AC 34 ms
20,096 KB
testcase_10 AC 31 ms
19,328 KB
testcase_11 AC 25 ms
18,432 KB
testcase_12 AC 28 ms
18,560 KB
testcase_13 AC 28 ms
18,688 KB
testcase_14 AC 28 ms
19,072 KB
testcase_15 AC 38 ms
20,352 KB
testcase_16 AC 29 ms
18,688 KB
testcase_17 AC 27 ms
18,816 KB
testcase_18 AC 30 ms
18,816 KB
testcase_19 WA -
testcase_20 AC 29 ms
18,688 KB
testcase_21 AC 28 ms
18,560 KB
testcase_22 AC 28 ms
18,560 KB
testcase_23 AC 28 ms
18,560 KB
testcase_24 AC 28 ms
18,560 KB
testcase_25 AC 28 ms
18,560 KB
testcase_26 AC 28 ms
18,560 KB
testcase_27 AC 26 ms
18,304 KB
testcase_28 AC 27 ms
18,432 KB
testcase_29 AC 26 ms
18,176 KB
testcase_30 AC 26 ms
18,176 KB
testcase_31 AC 26 ms
18,304 KB
testcase_32 AC 25 ms
18,432 KB
testcase_33 AC 27 ms
18,560 KB
testcase_34 AC 27 ms
18,432 KB
testcase_35 AC 28 ms
18,560 KB
testcase_36 AC 26 ms
18,304 KB
testcase_37 AC 27 ms
18,560 KB
testcase_38 AC 28 ms
18,432 KB
testcase_39 AC 26 ms
18,176 KB
testcase_40 AC 27 ms
18,432 KB
testcase_41 AC 29 ms
18,688 KB
testcase_42 AC 28 ms
18,432 KB
testcase_43 AC 27 ms
18,432 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;


class Magatro
{
    static string N = Console.ReadLine();
 static void Main()
    {
        bool[] boolean = new bool[N.Length];
        Console.WriteLine(cnt(boolean));
    }
    static int cnt(bool[] b)
    {
        bool flag = false;
        int max = 0;
        for(int i = 0; i < N.Length-2; i++)
        {
            if (b[i])
            {
                continue;
            }
            for(int j = i + 1; j < N.Length - 1; j++)
            {
                if (b[j] || N[i] == N[j])
                {
                    continue;
                }
                for(int k = j + 1; k < N.Length; k++)
                {
                    if (b[k] || N[k] != N[j])
                    {
                        continue;
                    }
                    flag = true;
                    int ans = int.Parse(new string(new char[] { N[i], N[j], N[k] }));
                    bool[] copy = b.ToArray();
                    copy[i] = true;
                    copy[j] = true;
                    copy[k] = true;
                    max = Math.Max(max, cnt(copy)+ans);
                }
            }
        }
        if (flag)
        {
            return max;
        }
        else
        {
            return 0;
        }
    }
}
public class Scanner
{
    private string[] S;
    private int Index;
    private char Separator;
    public Scanner(char separator=' ')
    {
        Index = 0;
        Separator = separator;
    }
    public string Next()
    {
        string result;
        if (S == null || Index >= S.Length)
        {
            S = Line();
            Index = 0;
        }
        result = S[Index];
        Index++;
        return result;
    }
    private string[] Line()
    {
        return Console.ReadLine().Split(Separator);
    } 
    public int NextInt()
    {
        return int.Parse(Next());
    }
    public double NextDouble()
    {
        return double.Parse(Next());
    }
    public long NextLong()
    {
        return long.Parse(Next());
    }
}
0