結果

問題 No.533 Mysterious Stairs
ユーザー TsubajiroTsubajiro
提出日時 2023-08-04 21:19:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 341 ms / 5,000 ms
コード長 378 bytes
コンパイル時間 1,031 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 172,416 KB
最終ジャッジ日時 2024-10-14 19:04:13
合計ジャッジ時間 3,871 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,840 KB
testcase_01 AC 41 ms
51,584 KB
testcase_02 AC 40 ms
51,712 KB
testcase_03 AC 40 ms
51,712 KB
testcase_04 AC 40 ms
51,840 KB
testcase_05 AC 40 ms
51,456 KB
testcase_06 AC 40 ms
51,840 KB
testcase_07 AC 41 ms
52,224 KB
testcase_08 AC 41 ms
52,096 KB
testcase_09 AC 41 ms
51,840 KB
testcase_10 AC 48 ms
58,752 KB
testcase_11 AC 51 ms
60,416 KB
testcase_12 AC 53 ms
61,184 KB
testcase_13 AC 52 ms
61,824 KB
testcase_14 AC 52 ms
61,952 KB
testcase_15 AC 54 ms
62,336 KB
testcase_16 AC 55 ms
62,464 KB
testcase_17 AC 55 ms
63,360 KB
testcase_18 AC 56 ms
63,872 KB
testcase_19 AC 56 ms
64,384 KB
testcase_20 AC 97 ms
87,552 KB
testcase_21 AC 100 ms
88,448 KB
testcase_22 AC 173 ms
113,408 KB
testcase_23 AC 340 ms
171,264 KB
testcase_24 AC 341 ms
172,416 KB
testcase_25 AC 97 ms
87,296 KB
testcase_26 AC 304 ms
159,488 KB
testcase_27 AC 138 ms
100,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
dp = [[0]*3 for _ in range(N+1)]
dp[1][0]=1
if N>=2:
    dp[2][1]=1
if N>=3:
    dp[3][2]=1
mod=10**9+7

for i in range(0,N):
    for j in range(3):
        for jj in range(3):
            if j==jj:
                continue
            if i+jj+1>N:
                break
            dp[i+jj+1][jj]+=dp[i][j]
            dp[i+jj+1][jj]%=mod
print(sum(dp[-1])%mod)
0