結果

問題 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,479 ms / 5,000 ms
コード長 418 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 206,720 KB
最終ジャッジ日時 2024-05-02 07:35:38
合計ジャッジ時間 15,063 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,752 KB
testcase_01 AC 35 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 32 ms
10,752 KB
testcase_05 AC 32 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 32 ms
10,880 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 32 ms
10,752 KB
testcase_11 AC 32 ms
10,752 KB
testcase_12 AC 36 ms
10,752 KB
testcase_13 AC 34 ms
10,880 KB
testcase_14 AC 34 ms
10,880 KB
testcase_15 AC 37 ms
11,008 KB
testcase_16 AC 41 ms
11,264 KB
testcase_17 AC 48 ms
11,776 KB
testcase_18 AC 56 ms
12,288 KB
testcase_19 AC 62 ms
12,672 KB
testcase_20 AC 383 ms
32,640 KB
testcase_21 AC 420 ms
34,944 KB
testcase_22 AC 1,317 ms
85,888 KB
testcase_23 AC 3,414 ms
204,288 KB
testcase_24 AC 3,479 ms
206,720 KB
testcase_25 AC 388 ms
32,768 KB
testcase_26 AC 2,941 ms
179,584 KB
testcase_27 AC 829 ms
60,416 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