結果

問題 No.533 Mysterious Stairs
ユーザー AEnAEn
提出日時 2022-05-17 14:59:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 261 ms / 5,000 ms
コード長 323 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 81,832 KB
実行使用メモリ 172,312 KB
最終ジャッジ日時 2024-09-15 09:34:57
合計ジャッジ時間 3,378 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,148 KB
testcase_01 AC 42 ms
52,568 KB
testcase_02 AC 39 ms
52,800 KB
testcase_03 AC 38 ms
52,460 KB
testcase_04 AC 38 ms
53,032 KB
testcase_05 AC 38 ms
51,816 KB
testcase_06 AC 38 ms
53,164 KB
testcase_07 AC 39 ms
52,008 KB
testcase_08 AC 38 ms
52,604 KB
testcase_09 AC 39 ms
52,688 KB
testcase_10 AC 40 ms
52,704 KB
testcase_11 AC 40 ms
53,416 KB
testcase_12 AC 48 ms
61,144 KB
testcase_13 AC 45 ms
60,876 KB
testcase_14 AC 44 ms
60,364 KB
testcase_15 AC 45 ms
60,800 KB
testcase_16 AC 45 ms
61,264 KB
testcase_17 AC 47 ms
62,544 KB
testcase_18 AC 46 ms
62,160 KB
testcase_19 AC 47 ms
62,352 KB
testcase_20 AC 77 ms
87,236 KB
testcase_21 AC 80 ms
88,328 KB
testcase_22 AC 131 ms
113,656 KB
testcase_23 AC 254 ms
171,552 KB
testcase_24 AC 261 ms
172,312 KB
testcase_25 AC 77 ms
87,508 KB
testcase_26 AC 224 ms
159,236 KB
testcase_27 AC 97 ms
95,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
mod = 10**9+7
dp = [[0]*3 for _ in range(N+1)]
dp[0][0] = 1
for i in range(1, N+1):
    if i == 1:
        dp[i][0] = 1
    elif i == 2:
        dp[i][1] = 1
    else:
        for j in range(3):
            dp[i][j] = dp[i-j-1][(j+1)%3]+dp[i-j-1][(j+2)%3]
            dp[i][j] %= mod
print(sum(dp[-1])%mod)
0