結果

問題 No.533 Mysterious Stairs
ユーザー titiatitia
提出日時 2024-02-12 00:08:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 376 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 38,472 KB
最終ジャッジ日時 2024-09-28 17:46:54
合計ジャッジ時間 17,548 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 28 ms
10,624 KB
testcase_07 AC 26 ms
10,624 KB
testcase_08 AC 25 ms
10,624 KB
testcase_09 AC 26 ms
10,624 KB
testcase_10 AC 26 ms
10,752 KB
testcase_11 AC 27 ms
10,880 KB
testcase_12 AC 27 ms
10,752 KB
testcase_13 AC 28 ms
10,752 KB
testcase_14 AC 27 ms
10,752 KB
testcase_15 AC 28 ms
11,008 KB
testcase_16 AC 33 ms
11,008 KB
testcase_17 AC 44 ms
11,392 KB
testcase_18 AC 60 ms
11,648 KB
testcase_19 AC 76 ms
11,904 KB
testcase_20 AC 4,465 ms
23,936 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

mod=10**9+7

N=int(input())

DPA=[0]*(N+100)
DPB=[0]*(N+100)
DPC=[0]*(N+100)

DPA[1]=1
DPB[2]=1
DPC[3]=1

for i in range(N):
    DPB[i+2]+=DPA[i]
    DPC[i+3]+=DPA[i]

    DPA[i+1]+=DPB[i]
    DPC[i+3]+=DPB[i]

    DPA[i+1]+=DPC[i]
    DPB[i+2]+=DPC[i]

    DPA[i]%=mod
    DPB[i]%=mod
    DPC[i]%=mod

print((DPA[N]+DPB[N]+DPC[N])%mod)
0