結果

問題 No.437 cwwゲーム
ユーザー 14番14番
提出日時 2016-10-28 23:21:11
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 2,070 bytes
コンパイル時間 3,241 ms
コンパイル使用メモリ 118,296 KB
実行使用メモリ 27,628 KB
最終ジャッジ日時 2024-05-03 08:06:22
合計ジャッジ時間 3,846 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
19,328 KB
testcase_01 AC 26 ms
18,432 KB
testcase_02 AC 35 ms
19,328 KB
testcase_03 AC 35 ms
19,200 KB
testcase_04 AC 36 ms
18,688 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 37 ms
19,200 KB
testcase_08 AC 36 ms
19,328 KB
testcase_09 AC 38 ms
19,584 KB
testcase_10 WA -
testcase_11 AC 33 ms
18,944 KB
testcase_12 AC 35 ms
19,200 KB
testcase_13 AC 36 ms
19,584 KB
testcase_14 AC 35 ms
19,456 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 35 ms
19,200 KB
testcase_18 WA -
testcase_19 AC 35 ms
18,944 KB
testcase_20 AC 33 ms
19,200 KB
testcase_21 AC 35 ms
19,072 KB
testcase_22 AC 35 ms
19,200 KB
testcase_23 WA -
testcase_24 AC 34 ms
18,944 KB
testcase_25 AC 35 ms
19,072 KB
testcase_26 WA -
testcase_27 AC 31 ms
18,944 KB
testcase_28 WA -
testcase_29 AC 32 ms
18,816 KB
testcase_30 AC 26 ms
18,304 KB
testcase_31 AC 31 ms
18,944 KB
testcase_32 AC 27 ms
18,560 KB
testcase_33 WA -
testcase_34 AC 35 ms
19,200 KB
testcase_35 WA -
testcase_36 AC 25 ms
18,176 KB
testcase_37 AC 25 ms
18,176 KB
testcase_38 AC 34 ms
19,200 KB
testcase_39 AC 25 ms
18,432 KB
testcase_40 AC 33 ms
19,072 KB
testcase_41 AC 35 ms
18,944 KB
testcase_42 AC 34 ms
19,200 KB
testcase_43 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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;
using System.Collections.Generic;

public class Program
{
    public void Proc() {
        Reader.IsDebug = false;
        long ans = GetAns(long.Parse(Reader.ReadLine()));
        Console.WriteLine(ans);
    }

    private Dictionary<long, long> dic = new Dictionary<long, long>();
    

    private long GetAns(long num) {
        if(dic.ContainsKey(num)) {
            return dic[num];
        }

        long ans = 0;

        string numstr = num.ToString();
        if(numstr.Length < 3) {
            return 0;
        }

        for(int i=0; i<numstr.Length - 2; i++) {
            if(numstr[i] == '0') {
                continue;
            }
            char[] numList = numstr.Skip(i+1).Where(a=>numstr.Skip(i+1).Count(b=>b==a)>1 && a != numstr[i]).ToArray();
            numList.ToList().ForEach(a=>{
                long newNum = long.Parse(numstr[i].ToString() + a + a);
                List<char> tmp = numstr.ToList();
                
                tmp.RemoveAt(numstr.IndexOf(a, i));
                tmp.RemoveAt(numstr.IndexOf(a, i));
                tmp.RemoveAt(i);
                long ret = 0;
                if(tmp.Count > 0) {
                    ret = this.GetAns(long.Parse(string.Join(string.Empty, tmp)));
                }
                ans = Math.Max(ans, ret + newNum);                
            });
        }
        dic[num] = ans;
        return ans;
    }

    public class Reader {
        public static bool IsDebug = true;
        private static System.IO.StringReader SReader;
        private static string InitText = @"


2718281828



";
        public static string ReadLine() {
            if(IsDebug) {
                if(SReader == null) {
                    SReader = new System.IO.StringReader(InitText.Trim());
                }
                return SReader.ReadLine();
            } else {
                return Console.ReadLine();
            }
        }
    }
    public static void Main(string[] args)
    {
        Program prg = new Program();
        prg.Proc();
    }
}
0