結果

問題 No.533 Mysterious Stairs
ユーザー titiatitia
提出日時 2024-02-12 00:09:46
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 376 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 92,228 KB
最終ジャッジ日時 2024-09-28 17:47:08
合計ジャッジ時間 13,361 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,644 KB
testcase_01 AC 31 ms
52,316 KB
testcase_02 AC 33 ms
52,212 KB
testcase_03 AC 32 ms
52,200 KB
testcase_04 AC 32 ms
52,552 KB
testcase_05 AC 32 ms
52,612 KB
testcase_06 AC 35 ms
52,240 KB
testcase_07 AC 35 ms
53,068 KB
testcase_08 AC 31 ms
51,824 KB
testcase_09 AC 33 ms
52,620 KB
testcase_10 AC 32 ms
52,516 KB
testcase_11 AC 34 ms
52,444 KB
testcase_12 AC 35 ms
53,200 KB
testcase_13 AC 37 ms
54,280 KB
testcase_14 AC 36 ms
52,744 KB
testcase_15 AC 41 ms
61,160 KB
testcase_16 AC 44 ms
61,756 KB
testcase_17 AC 52 ms
65,376 KB
testcase_18 AC 70 ms
70,044 KB
testcase_19 AC 84 ms
73,016 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 -- -
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