結果

問題 No.420 mod2漸化式
ユーザー 14番14番
提出日時 2016-09-10 08:14:35
言語 C#(csc)
(csc 3.9.0)
結果
MLE  
実行時間 -
コード長 1,963 bytes
コンパイル時間 1,070 ms
コンパイル使用メモリ 108,928 KB
実行使用メモリ 864,584 KB
最終ジャッジ日時 2024-11-16 19:45:53
合計ジャッジ時間 32,517 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 TLE -
testcase_02 MLE -
testcase_03 MLE -
testcase_04 AC 34 ms
24,032 KB
testcase_05 MLE -
testcase_06 AC 32 ms
18,688 KB
testcase_07 AC 93 ms
66,364 KB
testcase_08 AC 189 ms
151,888 KB
testcase_09 AC 541 ms
386,536 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 743 ms
413,568 KB
testcase_25 AC 290 ms
182,108 KB
testcase_26 AC 127 ms
72,028 KB
testcase_27 AC 58 ms
38,084 KB
testcase_28 AC 37 ms
22,528 KB
testcase_29 AC 32 ms
18,944 KB
testcase_30 AC 31 ms
19,072 KB
testcase_31 AC 29 ms
19,072 KB
testcase_32 AC 30 ms
18,944 KB
testcase_33 AC 28 ms
18,688 KB
testcase_34 AC 28 ms
18,944 KB
testcase_35 MLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.Generic;
using System.Text;
using System.Linq;



class Program
{
    public void Proc()
    {
        Reader.IsDebug = false;
        this.TargetCount = int.Parse(Reader.ReadLine());
        List<long> ret = this.GetAns(0,0);
        Console.WriteLine(ret.Count + " " + ret.Sum(a=>a));
    }

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

    private long TargetCount;
    private List<long> GetAns(int idx, int cnt) {
        if(!dic.ContainsKey(idx)) {
            dic.Add(idx, new Dictionary<int, List<long>>());
        }
        if(dic[idx].ContainsKey(cnt)) {
            return dic[idx][cnt];
        }
        List<long> ret = new List<long>();
        if(idx >= 31) {
            if(cnt == TargetCount) {
                ret.Add(0);
            }
            return ret;
        }

        if(cnt > this.TargetCount) {
            return ret;
        }
        if(TargetCount - cnt > 31 - idx) {
            return ret;
        }

        List<long> tmp = this.GetAns(idx + 1, cnt);
        List<long> tmp2 = this.GetAns(idx + 1, cnt + 1);
        ret.AddRange(tmp);
        tmp2.ForEach(a=>ret.Add(a + (1<<idx)));
        dic[idx].Add(cnt, ret);
        return ret;
    }




    public class Reader
    {
        public static bool IsDebug = true;
        private static String PlainInput = @"

6





";
        private static System.IO.StringReader Sr = null;
        public static string ReadLine()
        {
            if (IsDebug)
            {
                if (Sr == null)
                {
                    Sr = new System.IO.StringReader(PlainInput.Trim());
                }
                return Sr.ReadLine();
            }
            else
            {
                return Console.ReadLine();
            }
        }
    }
    static void Main()
    {
        Program prg = new Program();
        prg.Proc();
    }
}
0