結果

問題 No.53 悪の漸化式
ユーザー HiroakiSoftwareHiroakiSoftware
提出日時 2014-10-31 00:13:33
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,094 bytes
コンパイル時間 1,052 ms
コンパイル使用メモリ 105,344 KB
実行使用メモリ 18,432 KB
最終ジャッジ日時 2024-06-09 18:03:25
合計ジャッジ時間 1,824 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
18,304 KB
testcase_01 AC 22 ms
18,176 KB
testcase_02 AC 22 ms
17,920 KB
testcase_03 AC 21 ms
18,176 KB
testcase_04 AC 21 ms
18,304 KB
testcase_05 AC 22 ms
17,920 KB
testcase_06 AC 22 ms
18,304 KB
testcase_07 AC 22 ms
18,304 KB
testcase_08 AC 22 ms
18,176 KB
testcase_09 AC 23 ms
18,304 KB
testcase_10 AC 22 ms
18,432 KB
testcase_11 AC 23 ms
17,920 KB
testcase_12 AC 21 ms
17,920 KB
testcase_13 AC 21 ms
18,304 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 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.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace yc53cs
{
    class Program
    {
        static Decimal[] Cache = new Decimal[99];
        static bool[] bWroteCache = new bool[99];
        static void Main(string[] args)
        {
            int N = int.Parse(Console.ReadLine());

            for (int i = 0; i < Cache.Length; i++)
            {
                Cache[i] = 0;
                bWroteCache[i] = false;

            }

            Console.WriteLine(Calc(N));
        }

        static Decimal Calc(int k)
        {
            if (k == 0)
            {
                return 4;
            }
            else if (k == 1)
            {
                return 3;
            }
            else
            {
                if (bWroteCache[k - 2]) return Cache[k - 2];
                Cache[k - 2] = (19 * Calc(k - 1) - 12 * Calc(k - 2)) / 4;
                bWroteCache[k - 2] = true;
                return Cache[k - 2];
            }
        }
    }
}
0