結果

問題 No.533 Mysterious Stairs
ユーザー alexara1123alexara1123
提出日時 2019-07-09 15:20:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 95 ms / 5,000 ms
コード長 1,213 bytes
コンパイル時間 489 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 91,524 KB
最終ジャッジ日時 2024-10-12 04:43:21
合計ジャッジ時間 2,403 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,888 KB
testcase_01 AC 38 ms
53,080 KB
testcase_02 AC 35 ms
53,516 KB
testcase_03 AC 35 ms
52,500 KB
testcase_04 AC 33 ms
52,516 KB
testcase_05 AC 35 ms
53,372 KB
testcase_06 AC 35 ms
54,040 KB
testcase_07 AC 33 ms
52,468 KB
testcase_08 AC 34 ms
54,004 KB
testcase_09 AC 35 ms
54,020 KB
testcase_10 AC 33 ms
53,624 KB
testcase_11 AC 36 ms
53,440 KB
testcase_12 AC 42 ms
53,772 KB
testcase_13 AC 43 ms
61,888 KB
testcase_14 AC 43 ms
61,700 KB
testcase_15 AC 53 ms
67,960 KB
testcase_16 AC 53 ms
67,792 KB
testcase_17 AC 53 ms
67,612 KB
testcase_18 AC 53 ms
66,908 KB
testcase_19 AC 53 ms
67,008 KB
testcase_20 AC 58 ms
70,204 KB
testcase_21 AC 61 ms
70,808 KB
testcase_22 AC 73 ms
75,708 KB
testcase_23 AC 95 ms
91,524 KB
testcase_24 AC 94 ms
91,072 KB
testcase_25 AC 62 ms
70,716 KB
testcase_26 AC 91 ms
88,576 KB
testcase_27 AC 67 ms
73,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(1000000000)
N = int(input())


memo1 = [ -1 for i in range(N+1)]
memo2 = [ -1 for i in range(N+1)]
memo3 = [ -1 for i in range(N+1)]

MOD = 10**9 + 7

def r1(n):
    if n == 1:
        return 1
    elif n == 2:
        return 0
    elif n == 3:
        return 1
    else:
        if memo2[n-1] == -1:
            memo2[n-1] = r2(n-1) % MOD
        if memo3[n-1] == -1:
            memo3[n-1] = r3(n-1)%MOD
        return (memo2[n-1] + memo3[n-1]) % MOD
        
def r2(n):
    if n == 1:
        return 0
    elif n == 2:
        return 1
    elif n == 3:
        return 1
    else:
        if memo1[n-2] == -1:
            memo1[n-2] = r1(n-2) % MOD
        if memo3[n-2] == -1:
            memo3[n-2] = r3(n-2) % MOD
        return (memo1[n-2] + memo3[n-2]) % MOD

def r3(n):
    if n == 1:
        return 0
    elif n == 2:
        return 0
    elif n == 3:
        return 1
    else:
        if memo1[n-3] == -1:
            memo1[n-3] = r1(n-3) % MOD 
        if memo2[n-3] == -1:
            memo2[n-3] = r2(n-3) % MOD
        return (memo1[n-3] + memo2[n-3]) % MOD



def r(n):
    return (r1(n) + r2(n) + r3(n)) % MOD
for i in range(4,N):
    r(i)

print(r(N))
          
0