結果

問題 No.533 Mysterious Stairs
ユーザー mlihua09mlihua09
提出日時 2020-09-16 02:45:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 5,000 ms
コード長 349 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 59,488 KB
最終ジャッジ日時 2024-06-22 02:57:36
合計ジャッジ時間 2,032 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,700 KB
testcase_01 AC 32 ms
52,356 KB
testcase_02 AC 34 ms
52,324 KB
testcase_03 AC 33 ms
53,480 KB
testcase_04 AC 34 ms
52,428 KB
testcase_05 AC 33 ms
52,396 KB
testcase_06 AC 31 ms
53,168 KB
testcase_07 AC 34 ms
52,484 KB
testcase_08 AC 35 ms
52,704 KB
testcase_09 AC 36 ms
52,704 KB
testcase_10 AC 35 ms
52,952 KB
testcase_11 AC 34 ms
53,504 KB
testcase_12 AC 35 ms
53,084 KB
testcase_13 AC 35 ms
52,476 KB
testcase_14 AC 36 ms
54,040 KB
testcase_15 AC 38 ms
58,236 KB
testcase_16 AC 37 ms
58,152 KB
testcase_17 AC 39 ms
59,256 KB
testcase_18 AC 38 ms
59,488 KB
testcase_19 AC 37 ms
59,096 KB
testcase_20 AC 41 ms
58,748 KB
testcase_21 AC 40 ms
58,412 KB
testcase_22 AC 42 ms
58,740 KB
testcase_23 AC 48 ms
58,312 KB
testcase_24 AC 47 ms
58,724 KB
testcase_25 AC 38 ms
57,852 KB
testcase_26 AC 46 ms
58,580 KB
testcase_27 AC 41 ms
58,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


mod = 10 ** 9 + 7
N = int(input())
if N == 1:
    print(1)
    exit()
elif N == 2:
    print(1)
    exit()
x1, x2, x3 = 1, 0, 1
y1, y2, y3 = 0, 1, 1
z1, z2, z3 = 0, 0, 1

for _ in range(N - 3):
    
    x1, x2, x3, y1, y2, y3, z1, z2, z3 = x2, x3, (y3 + z3) % mod, y2, y3, (x2 + z2) % mod, z2, z3, (x1 + y1) % mod
    
print((x3 + y3 + z3) % mod)
0