結果

問題 No.533 Mysterious Stairs
ユーザー 👑 KazunKazun
提出日時 2021-02-16 18:56:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 520 ms / 5,000 ms
コード長 307 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 226,176 KB
最終ジャッジ日時 2024-09-13 08:33:13
合計ジャッジ時間 4,423 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,740 KB
testcase_01 AC 40 ms
52,528 KB
testcase_02 AC 39 ms
52,220 KB
testcase_03 AC 39 ms
53,244 KB
testcase_04 AC 39 ms
51,876 KB
testcase_05 AC 39 ms
52,112 KB
testcase_06 AC 39 ms
52,568 KB
testcase_07 AC 39 ms
52,600 KB
testcase_08 AC 39 ms
52,400 KB
testcase_09 AC 39 ms
52,220 KB
testcase_10 AC 44 ms
59,076 KB
testcase_11 AC 45 ms
60,644 KB
testcase_12 AC 48 ms
61,144 KB
testcase_13 AC 47 ms
61,428 KB
testcase_14 AC 47 ms
61,636 KB
testcase_15 AC 49 ms
63,092 KB
testcase_16 AC 49 ms
63,600 KB
testcase_17 AC 49 ms
66,332 KB
testcase_18 AC 50 ms
66,732 KB
testcase_19 AC 51 ms
68,824 KB
testcase_20 AC 105 ms
91,348 KB
testcase_21 AC 113 ms
94,324 KB
testcase_22 AC 231 ms
134,120 KB
testcase_23 AC 508 ms
225,108 KB
testcase_24 AC 520 ms
226,176 KB
testcase_25 AC 103 ms
91,700 KB
testcase_26 AC 449 ms
206,304 KB
testcase_27 AC 180 ms
114,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
Mod=10**9+7

DP=[["*",0,0,0] for _ in range(N+4)]
DP[1]=["*",1,0,0]
DP[2]=["*",0,1,0]
DP[3]=["*",0,0,1]

for i in range(1,N+1):
    for s in [1,2,3]:
        for t in [1,2,3]:
            if s!=t:
                DP[i+s][s]+=DP[i][t]
                DP[i+s][s]%=Mod

print(sum(DP[N][1:])%Mod)
0