結果

問題 No.533 Mysterious Stairs
ユーザー brthyyjpbrthyyjp
提出日時 2021-03-23 14:06:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 290 ms / 5,000 ms
コード長 396 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 172,476 KB
最終ジャッジ日時 2024-11-25 05:59:53
合計ジャッジ時間 3,261 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,068 KB
testcase_01 AC 34 ms
53,624 KB
testcase_02 AC 33 ms
52,776 KB
testcase_03 AC 34 ms
52,792 KB
testcase_04 AC 32 ms
53,316 KB
testcase_05 AC 32 ms
52,680 KB
testcase_06 AC 34 ms
53,420 KB
testcase_07 AC 34 ms
53,044 KB
testcase_08 AC 34 ms
53,228 KB
testcase_09 AC 34 ms
53,584 KB
testcase_10 AC 41 ms
59,524 KB
testcase_11 AC 40 ms
60,804 KB
testcase_12 AC 43 ms
62,348 KB
testcase_13 AC 43 ms
61,804 KB
testcase_14 AC 43 ms
62,452 KB
testcase_15 AC 48 ms
63,516 KB
testcase_16 AC 42 ms
62,604 KB
testcase_17 AC 44 ms
63,956 KB
testcase_18 AC 44 ms
64,396 KB
testcase_19 AC 45 ms
64,928 KB
testcase_20 AC 76 ms
87,316 KB
testcase_21 AC 78 ms
88,304 KB
testcase_22 AC 139 ms
113,912 KB
testcase_23 AC 279 ms
171,512 KB
testcase_24 AC 290 ms
172,476 KB
testcase_25 AC 75 ms
87,164 KB
testcase_26 AC 248 ms
159,412 KB
testcase_27 AC 108 ms
101,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
if n == 1:
    print(1)
    exit()
if n == 2:
    print(1)
    exit()
mod = 10**9+7
dp = [[0]*3 for i in range(n+1)]
dp[1][0] = 1
dp[2][1] = 1
dp[3][2] = 1

for i in range(n):
    for j in range(3):
        for k in range(3):
            if j == k:
                continue
            if i+k+1 <= n:
                dp[i+k+1][k] += dp[i][j]%mod
#print(dp)
print(sum(dp[n])%mod)
0