結果

問題 No.533 Mysterious Stairs
ユーザー くれちー
提出日時 2017-06-24 18:23:54
言語 C#(csc)
(csc 3.9.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 2,465 bytes
コンパイル時間 827 ms
コンパイル使用メモリ 118,524 KB
実行使用メモリ 27,340 KB
最終ジャッジ日時 2024-10-04 05:26:44
合計ジャッジ時間 2,349 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 25 WA * 3
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

#pragma warning disable IDE0011
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Numerics;
using static System.Math;
using static Extentions;

class IO
{
    int idx;
    string[] line;

    public void R(char sep = ' ') { line = Console.ReadLine().Split(sep); idx = 0; }
    public string S => line[idx++];
    public string[] Ss => line.Skip(idx++).ToArray();
    public char C => char.Parse(line[idx++]);
    public char[] Cs => line.Skip(idx++).Select(char.Parse).ToArray();
    public int I => int.Parse(line[idx++]);
    public int[] Is => line.Skip(idx++).Select(int.Parse).ToArray();
    public long L => long.Parse(line[idx++]);
    public long[] Ls => line.Skip(idx++).Select(long.Parse).ToArray();
    public double F => double.Parse(line[idx++]);
    public double[] Fs => line.Skip(idx++).Select(double.Parse).ToArray();
    public decimal D => decimal.Parse(line[idx++]);
    public decimal[] Ds => line.Skip(idx++).Select(decimal.Parse).ToArray();
    public BigInteger B => BigInteger.Parse(line[idx++]);
    public BigInteger[] Bs => line.Skip(idx++).Select(BigInteger.Parse).ToArray();

    public void Write(params object[] xs)
    {
        Console.Write(xs.First());
        foreach (var x in xs.Skip(1)) Console.Write(" " + x);
        Console.WriteLine();
    }
}

static class Extentions
{
    public static int Mod = 1000000007;
}

static class Program
{
    static void Main()
    {
        Console.SetOut(new StreamWriter(Console.OpenStandardOutput()) { AutoFlush = false });
        Solve(new IO());
        Console.Out.Flush();
    }

    static void Solve(IO io)
    {
        io.R();
        var n = io.I;

        var dp1 = new int[4];
        var dp2 = new int[4];
        var dp3 = new int[4];

        dp1[0] = 1; dp2[0] = 0; dp3[0] = 0;
        dp1[1] = 0; dp2[1] = 1; dp3[1] = 0;
        dp1[2] = 1; dp2[2] = 1; dp3[2] = 1;

        if (n <= 3)
        {
            io.Write(dp1[n - 1] + dp2[n - 1] + dp3[n - 1]);
            return;
        }

        for (var i = 3; i < n; i++)
        {
            dp1[3] = (dp2[2] + dp3[2]) % Mod;
            dp2[3] = (dp1[1] + dp3[1]) % Mod;
            dp3[3] = (dp1[0] + dp2[0]) % Mod;

            for (var j = 0; j < 3; j++)
            {
                dp1[j] = dp1[j + 1];
                dp2[j] = dp2[j + 1];
                dp3[j] = dp3[j + 1];
            }
        }

        io.Write((dp1[3] + dp2[3] + dp3[3]) % Mod);
    }
}
0