結果

問題 No.533 Mysterious Stairs
ユーザー mkawa2mkawa2
提出日時 2020-01-03 21:55:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 3,154 ms / 5,000 ms
コード長 418 bytes
コンパイル時間 102 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 206,720 KB
最終ジャッジ日時 2024-11-22 19:34:34
合計ジャッジ時間 13,745 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 24 ms
10,624 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 28 ms
10,624 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 25 ms
10,752 KB
testcase_10 AC 27 ms
10,624 KB
testcase_11 AC 27 ms
10,624 KB
testcase_12 AC 27 ms
10,624 KB
testcase_13 AC 27 ms
10,880 KB
testcase_14 AC 29 ms
10,880 KB
testcase_15 AC 31 ms
11,008 KB
testcase_16 AC 33 ms
11,264 KB
testcase_17 AC 42 ms
11,648 KB
testcase_18 AC 47 ms
12,288 KB
testcase_19 AC 54 ms
12,672 KB
testcase_20 AC 351 ms
32,512 KB
testcase_21 AC 379 ms
34,944 KB
testcase_22 AC 1,173 ms
85,632 KB
testcase_23 AC 3,154 ms
204,288 KB
testcase_24 AC 3,147 ms
206,720 KB
testcase_25 AC 386 ms
32,640 KB
testcase_26 AC 2,687 ms
179,584 KB
testcase_27 AC 764 ms
60,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    md = 10 ** 9 + 7
    n = int(input())
    dp = [[0] * 4 for _ in range(n + 1)]
    dp[0][0] = 1
    for i in range(n):
        for j in range(4):
            pre = dp[i][j]
            if pre == 0: continue
            for nj in range(1, 4):
                if nj == j: continue
                if i + nj <= n: dp[i + nj][nj] = (dp[i + nj][nj] + pre) % md
    #p2D(dp)
    print(sum(dp[n])%md)

main()
0