結果

問題 No.420 mod2漸化式
ユーザー 14番14番
提出日時 2016-09-10 08:08:38
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 1,828 bytes
コンパイル時間 1,162 ms
コンパイル使用メモリ 109,184 KB
実行使用メモリ 120,932 KB
最終ジャッジ日時 2024-11-16 19:44:28
合計ジャッジ時間 62,191 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 281 ms
45,992 KB
testcase_01 TLE -
testcase_02 AC 25 ms
23,808 KB
testcase_03 AC 28 ms
84,892 KB
testcase_04 AC 38 ms
27,648 KB
testcase_05 AC 81 ms
90,228 KB
testcase_06 AC 25 ms
23,680 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
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 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 long TargetCount;
    private List<long> GetAns(int idx, int cnt) {
        List<long> ret = new List<long>();
        if(idx >= 31) {
            if(cnt == TargetCount) {
                ret.Add(0);
            }
            return ret;
        }

        if(cnt > this.TargetCount) {
            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)));
        return ret;
    }

    private long GetNum(int num) {
        if(dic.ContainsKey(num)) {
            return dic[num];
        }
        long ans = this.GetNum(num / 2) + (num % 2);
        dic.Add(num, ans);
        return ans;
    }

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

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

1





";
        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