結果

問題 No.533 Mysterious Stairs
ユーザー wgrapewgrape
提出日時 2024-11-08 11:40:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 421 ms / 5,000 ms
コード長 480 bytes
コンパイル時間 488 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 180,352 KB
最終ジャッジ日時 2024-11-08 11:40:45
合計ジャッジ時間 4,960 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,584 KB
testcase_01 AC 46 ms
51,584 KB
testcase_02 AC 42 ms
51,840 KB
testcase_03 AC 41 ms
51,584 KB
testcase_04 AC 42 ms
51,712 KB
testcase_05 AC 41 ms
51,968 KB
testcase_06 AC 42 ms
51,584 KB
testcase_07 AC 41 ms
51,968 KB
testcase_08 AC 41 ms
52,096 KB
testcase_09 AC 42 ms
52,096 KB
testcase_10 AC 49 ms
59,264 KB
testcase_11 AC 53 ms
60,928 KB
testcase_12 AC 55 ms
61,568 KB
testcase_13 AC 54 ms
61,568 KB
testcase_14 AC 55 ms
61,568 KB
testcase_15 AC 57 ms
62,080 KB
testcase_16 AC 57 ms
63,104 KB
testcase_17 AC 58 ms
63,616 KB
testcase_18 AC 59 ms
64,256 KB
testcase_19 AC 60 ms
64,896 KB
testcase_20 AC 102 ms
88,192 KB
testcase_21 AC 109 ms
89,472 KB
testcase_22 AC 194 ms
116,864 KB
testcase_23 AC 421 ms
179,200 KB
testcase_24 AC 396 ms
180,352 KB
testcase_25 AC 105 ms
88,320 KB
testcase_26 AC 347 ms
166,016 KB
testcase_27 AC 151 ms
103,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
# dp[i][K] = i段目にきて、最後に使ったのがKステップである

dp = [[0] * 4 for i in range(N + 1)]
dp[0][0] = 1
DIV = 10 ** 9 + 7

for i in range(N):
    for from_k in range(4):
        for to_k in range(1, 4):
            if from_k == to_k:
                continue
            if i + to_k > N:
                continue
            dp[i + to_k][to_k] += dp[i][from_k]
            dp[i + to_k][to_k] %= DIV
            
print(sum(dp[-1]) % DIV)
0