結果

問題 No.533 Mysterious Stairs
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-06-02 19:28:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,226 ms / 5,000 ms
コード長 378 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 206,720 KB
最終ジャッジ日時 2024-11-15 14:43:33
合計ジャッジ時間 10,121 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 26 ms
10,752 KB
testcase_06 AC 26 ms
10,880 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 26 ms
10,752 KB
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 27 ms
10,624 KB
testcase_12 AC 29 ms
10,752 KB
testcase_13 AC 28 ms
10,880 KB
testcase_14 AC 29 ms
10,880 KB
testcase_15 AC 29 ms
11,008 KB
testcase_16 AC 32 ms
11,264 KB
testcase_17 AC 38 ms
11,776 KB
testcase_18 AC 43 ms
12,288 KB
testcase_19 AC 49 ms
12,544 KB
testcase_20 AC 245 ms
32,512 KB
testcase_21 AC 264 ms
35,072 KB
testcase_22 AC 832 ms
85,760 KB
testcase_23 AC 2,187 ms
204,288 KB
testcase_24 AC 2,226 ms
206,720 KB
testcase_25 AC 257 ms
32,640 KB
testcase_26 AC 1,872 ms
179,584 KB
testcase_27 AC 531 ms
60,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
dp = [[0] * 3 for i in range(max(4, n + 1))]
dp[1][0] = 1; dp[2][1] = 1; dp[3][2] = 1
mod = 10 ** 9 + 7
for i in range(1, n + 1):
    dp[i][0] += dp[i - 1][1] + dp[i - 1][2]
    if i >= 2: dp[i][1] += dp[i - 2][0] + dp[i - 2][2]
    if i >= 3: dp[i][2] += dp[i - 3][0] + dp[i - 3][1]
    dp[i][0] %= mod; dp[i][1] %= mod; dp[i][2] %= mod
print(sum(dp[n]) % mod)
0