結果

問題 No.533 Mysterious Stairs
ユーザー ronpooronpoo
提出日時 2023-08-29 12:47:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 3,199 ms / 5,000 ms
コード長 238 bytes
コンパイル時間 996 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 206,848 KB
最終ジャッジ日時 2024-06-09 21:03:09
合計ジャッジ時間 14,797 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,880 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 27 ms
10,880 KB
testcase_03 AC 29 ms
10,880 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 28 ms
10,880 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 28 ms
10,752 KB
testcase_11 AC 28 ms
10,752 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 AC 31 ms
10,880 KB
testcase_14 AC 32 ms
10,880 KB
testcase_15 AC 34 ms
11,008 KB
testcase_16 AC 38 ms
11,264 KB
testcase_17 AC 44 ms
11,776 KB
testcase_18 AC 49 ms
12,288 KB
testcase_19 AC 56 ms
12,672 KB
testcase_20 AC 350 ms
32,640 KB
testcase_21 AC 402 ms
35,072 KB
testcase_22 AC 1,203 ms
85,888 KB
testcase_23 AC 3,193 ms
204,416 KB
testcase_24 AC 3,199 ms
206,848 KB
testcase_25 AC 347 ms
32,768 KB
testcase_26 AC 2,692 ms
179,840 KB
testcase_27 AC 758 ms
60,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
MOD = 10**9 + 7
dp = [[0]*4 for _ in range(N+10)]
dp[0][0] = 1
for i in range(N):
    for j in range(1, 4):
        dp[i+j][j] += sum(dp[i]) - dp[i][j]
        dp[i+j][j] %= MOD
        
ans = sum(dp[N]) % MOD
print(ans)
0