結果

問題 No.533 Mysterious Stairs
ユーザー ああいいああいい
提出日時 2022-01-28 12:38:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 342 ms / 5,000 ms
コード長 383 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 180,320 KB
最終ジャッジ日時 2024-06-09 04:40:14
合計ジャッジ時間 3,793 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,584 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 37 ms
52,352 KB
testcase_04 AC 37 ms
52,480 KB
testcase_05 AC 41 ms
51,968 KB
testcase_06 AC 41 ms
51,584 KB
testcase_07 AC 40 ms
51,840 KB
testcase_08 AC 40 ms
52,096 KB
testcase_09 AC 37 ms
52,864 KB
testcase_10 AC 46 ms
58,368 KB
testcase_11 AC 46 ms
60,160 KB
testcase_12 AC 48 ms
61,568 KB
testcase_13 AC 53 ms
61,568 KB
testcase_14 AC 47 ms
61,440 KB
testcase_15 AC 48 ms
62,336 KB
testcase_16 AC 49 ms
62,592 KB
testcase_17 AC 50 ms
63,360 KB
testcase_18 AC 50 ms
63,872 KB
testcase_19 AC 52 ms
64,896 KB
testcase_20 AC 95 ms
88,064 KB
testcase_21 AC 92 ms
89,948 KB
testcase_22 AC 171 ms
116,736 KB
testcase_23 AC 338 ms
179,344 KB
testcase_24 AC 342 ms
180,320 KB
testcase_25 AC 90 ms
88,140 KB
testcase_26 AC 302 ms
166,052 KB
testcase_27 AC 126 ms
103,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
dp = [[0] * 4 for _ in range(N+10)]

P = 10 ** 9 + 7
dp[1][1] = 1
dp[2][2] = 1
dp[3][3] = 1
for i in range(1,N+1):
    for j in range(1,4):
        if i + j <= N:
            for u in range(1,4):
                if u == j:continue
                else:
                    dp[i+j][j] = (dp[i+j][j] + dp[i][u]) % P
ans = dp[N][1] + dp[N][2] + dp[N][3]
print(ans % P)
0