結果
| 問題 |
No.533 Mysterious Stairs
|
| コンテスト | |
| ユーザー |
mban
|
| 提出日時 | 2017-06-24 07:15:46 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
AC
|
| 実行時間 | 119 ms / 5,000 ms |
| コード長 | 1,424 bytes |
| コンパイル時間 | 5,140 ms |
| コンパイル使用メモリ | 114,284 KB |
| 実行使用メモリ | 54,188 KB |
| 最終ジャッジ日時 | 2024-10-04 05:12:50 |
| 合計ジャッジ時間 | 2,610 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 28 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Text;
using System.Text.RegularExpressions;
using System.Linq;
class Program
{
static void Main()
{
new Magatro().Solve();
}
}
class Magatro
{
private int N;
private const int Mod = (int)1e9 + 7;
public void Solve()
{
N = int.Parse(Console.ReadLine());
var dp = new long[N + 10, 4];
dp[0, 0] = 1;
for (int i = 0; i < N; i++)
{
if (i == 0)
{
dp[i + 1, 1] = dp[i, 0];
dp[i + 2, 2] = dp[i, 0];
dp[i + 3, 3] = dp[i, 0];
}
else
{
if (dp[i, 1] != 0)
{
dp[i + 2, 2] += dp[i, 1];
dp[i + 3, 3] += dp[i, 1];
}
if (dp[i, 2] != 0)
{
dp[i + 3, 3] += dp[i, 2];
dp[i + 1, 1] += dp[i, 2];
}
if (dp[i, 3] != 0)
{
dp[i + 1, 1] += dp[i, 3];
dp[i + 2, 2] += dp[i, 3];
}
}
dp[i + 1, 1] %= Mod;
dp[i + 4, 2] %= Mod;
dp[i + 3, 3] %= Mod;
}
Console.WriteLine((dp[N, 1] + dp[N, 2] + dp[N, 3]) % Mod);
}
}
mban