結果

問題 No.533 Mysterious Stairs
ユーザー ThetaTheta
提出日時 2022-11-25 16:21:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 536 ms / 5,000 ms
コード長 503 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 258,176 KB
最終ジャッジ日時 2024-10-01 23:35:35
合計ジャッジ時間 4,405 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,096 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 42 ms
51,968 KB
testcase_03 AC 42 ms
52,096 KB
testcase_04 AC 40 ms
51,840 KB
testcase_05 AC 40 ms
52,096 KB
testcase_06 AC 40 ms
52,096 KB
testcase_07 AC 38 ms
52,096 KB
testcase_08 AC 39 ms
51,840 KB
testcase_09 AC 42 ms
52,096 KB
testcase_10 AC 41 ms
52,224 KB
testcase_11 AC 45 ms
58,240 KB
testcase_12 AC 52 ms
61,056 KB
testcase_13 AC 54 ms
61,696 KB
testcase_14 AC 55 ms
61,952 KB
testcase_15 AC 50 ms
62,592 KB
testcase_16 AC 51 ms
64,000 KB
testcase_17 AC 53 ms
66,304 KB
testcase_18 AC 54 ms
68,480 KB
testcase_19 AC 55 ms
69,760 KB
testcase_20 AC 111 ms
95,104 KB
testcase_21 AC 113 ms
98,432 KB
testcase_22 AC 227 ms
145,984 KB
testcase_23 AC 513 ms
255,532 KB
testcase_24 AC 536 ms
258,176 KB
testcase_25 AC 105 ms
95,260 KB
testcase_26 AC 434 ms
234,240 KB
testcase_27 AC 175 ms
122,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = int(1e9+7)


def main():
    N = int(input())
    dp_table = [[0, 0, 0, 0] for _ in range(N+1)]
    dp_table[0][0] = 1
    dp_table[0].append(sum(dp_table[0]) % MOD)
    for stair in range(1, N+1):
        for up_stair in range(1, min(stair+1, 4)):
            dp_table[stair][up_stair] = dp_table[stair-up_stair][4] - \
                dp_table[stair-up_stair][up_stair]
        dp_table[stair].append(sum(dp_table[stair]) % MOD)
    print(dp_table[N][4])


if __name__ == "__main__":
    main()
0