結果

問題 No.533 Mysterious Stairs
ユーザー phage64phage64
提出日時 2017-11-18 00:48:37
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 147 ms / 5,000 ms
コード長 1,747 bytes
コンパイル時間 796 ms
コンパイル使用メモリ 114,564 KB
実行使用メモリ 40,576 KB
最終ジャッジ日時 2024-05-04 02:43:39
合計ジャッジ時間 2,678 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
17,920 KB
testcase_01 AC 20 ms
18,048 KB
testcase_02 AC 21 ms
18,048 KB
testcase_03 AC 21 ms
18,048 KB
testcase_04 AC 20 ms
17,792 KB
testcase_05 AC 20 ms
17,792 KB
testcase_06 AC 21 ms
18,048 KB
testcase_07 AC 21 ms
18,048 KB
testcase_08 AC 21 ms
17,920 KB
testcase_09 AC 20 ms
18,176 KB
testcase_10 AC 21 ms
17,792 KB
testcase_11 AC 20 ms
17,664 KB
testcase_12 AC 21 ms
17,792 KB
testcase_13 AC 20 ms
17,792 KB
testcase_14 AC 21 ms
18,048 KB
testcase_15 AC 19 ms
17,792 KB
testcase_16 AC 20 ms
17,792 KB
testcase_17 AC 21 ms
17,920 KB
testcase_18 AC 22 ms
17,732 KB
testcase_19 AC 25 ms
17,992 KB
testcase_20 AC 35 ms
19,840 KB
testcase_21 AC 37 ms
20,224 KB
testcase_22 AC 71 ms
26,240 KB
testcase_23 AC 146 ms
40,576 KB
testcase_24 AC 147 ms
40,576 KB
testcase_25 AC 35 ms
19,968 KB
testcase_26 AC 130 ms
37,248 KB
testcase_27 AC 54 ms
22,784 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.IO;

class Program
{
    static void Solve()
    {
        int n = sc.Int();

        long[,] dp = new long[3, n + 5];

        for (int i = 1; i <= 3; i++)
            dp[i-1, i] = 1;


        for (int i = 1; i < n; i++)
            for (int j = 0; j < 3; j++)
                for (int k = 0; k < 3; k++)
                    if (j != k)
                        dp[k, i + k + 1] += dp[j, i] % MOD;

        long ans = 0;

        for (int i = 0; i < 3; i++)
            ans += dp[i, n];

        ans %= MOD;

        pr.WriteLine(ans);
    }


    static void Main(string[] args)
    {
        Solve();
        pr.Flush();
    }

    static Scanner sc = new Scanner();
    static Printer pr = new Printer();
    static readonly int MOD = 1000000007;
}

#region IO
class Scanner
{
    private int _i = 0; 
    private string[] line = new string[0];

    private T[] Enumerate<T>(int n, Func<T> f)
    {
        T[] ret = new T[n];
        for (int i = 0; i < n; i++)
            ret[i] = f();
        return ret;
    }

    public string String()
    {
        if (line.Length <= _i)
        {
            line = Console.ReadLine().Split(' ');
            _i = 0;
        }

        return line[_i++];
    }

    public int Int() => int.Parse(String());
    public long Long() => long.Parse(String());
    public double Double() => double.Parse(String());
    public int[] Int(int n) => Enumerate(n, Int);
    public long[] Long(int n) => Enumerate(n, Long);
    public double[] Double(int n) => Enumerate(n, Double);
    public string[] String(int n) => Enumerate(n, String);
}

class Printer : StreamWriter
{
    public Printer() : base(Console.OpenStandardOutput())
    {
        AutoFlush = false;
    }
}
#endregion
0