結果

問題 No.533 Mysterious Stairs
ユーザー first_vilfirst_vil
提出日時 2020-07-16 12:07:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 393 ms / 5,000 ms
コード長 284 bytes
コンパイル時間 473 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 180,608 KB
最終ジャッジ日時 2024-11-24 11:40:23
合計ジャッジ時間 3,989 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,096 KB
testcase_01 AC 34 ms
52,224 KB
testcase_02 AC 33 ms
52,352 KB
testcase_03 AC 32 ms
51,968 KB
testcase_04 AC 31 ms
51,840 KB
testcase_05 AC 33 ms
51,840 KB
testcase_06 AC 33 ms
52,476 KB
testcase_07 AC 33 ms
51,968 KB
testcase_08 AC 33 ms
51,840 KB
testcase_09 AC 35 ms
52,224 KB
testcase_10 AC 38 ms
60,032 KB
testcase_11 AC 39 ms
60,416 KB
testcase_12 AC 38 ms
60,800 KB
testcase_13 AC 40 ms
60,928 KB
testcase_14 AC 40 ms
61,440 KB
testcase_15 AC 42 ms
61,440 KB
testcase_16 AC 41 ms
61,824 KB
testcase_17 AC 47 ms
62,464 KB
testcase_18 AC 45 ms
63,488 KB
testcase_19 AC 42 ms
64,128 KB
testcase_20 AC 87 ms
88,320 KB
testcase_21 AC 93 ms
89,676 KB
testcase_22 AC 184 ms
116,736 KB
testcase_23 AC 379 ms
179,112 KB
testcase_24 AC 393 ms
180,608 KB
testcase_25 AC 85 ms
88,320 KB
testcase_26 AC 333 ms
166,256 KB
testcase_27 AC 133 ms
103,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=10**9+7
n=int(input())
dp=[[0]*4 for _ in range(n+1)]
dp[0][0]=1
for i in range(1,n+1):
    for j in range(1,4):
        if i<j:
            continue
        for k in range(0,4):
            if j!=k:
                dp[i][j]+=dp[i-j][k]
        dp[i][j]%=mod
print(sum(dp[n])%mod)
0