結果

問題 No.533 Mysterious Stairs
ユーザー phage64phage64
提出日時 2017-11-18 00:48:37
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 149 ms / 5,000 ms
コード長 1,747 bytes
コンパイル時間 1,729 ms
コンパイル使用メモリ 113,680 KB
実行使用メモリ 46,476 KB
最終ジャッジ日時 2024-11-25 08:55:38
合計ジャッジ時間 3,220 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
23,960 KB
testcase_01 AC 23 ms
23,824 KB
testcase_02 AC 23 ms
25,980 KB
testcase_03 AC 22 ms
21,688 KB
testcase_04 AC 22 ms
23,984 KB
testcase_05 AC 23 ms
25,744 KB
testcase_06 AC 23 ms
21,944 KB
testcase_07 AC 23 ms
23,940 KB
testcase_08 AC 22 ms
23,804 KB
testcase_09 AC 23 ms
21,808 KB
testcase_10 AC 22 ms
24,112 KB
testcase_11 AC 21 ms
21,936 KB
testcase_12 AC 22 ms
21,936 KB
testcase_13 AC 23 ms
23,932 KB
testcase_14 AC 24 ms
23,852 KB
testcase_15 AC 22 ms
23,880 KB
testcase_16 AC 23 ms
25,704 KB
testcase_17 AC 23 ms
23,896 KB
testcase_18 AC 23 ms
21,760 KB
testcase_19 AC 23 ms
23,800 KB
testcase_20 AC 35 ms
25,724 KB
testcase_21 AC 35 ms
25,856 KB
testcase_22 AC 69 ms
29,848 KB
testcase_23 AC 141 ms
46,096 KB
testcase_24 AC 149 ms
46,476 KB
testcase_25 AC 37 ms
23,860 KB
testcase_26 AC 132 ms
43,248 KB
testcase_27 AC 54 ms
29,084 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