結果

問題 No.314 ケンケンパ
ユーザー はむ吉🐹はむ吉🐹
提出日時 2016-01-04 21:25:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 268 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 11,772 KB
実行使用メモリ 17,816 KB
最終ジャッジ日時 2023-10-19 15:08:08
合計ジャッジ時間 3,127 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 481 ms
17,816 KB
testcase_01 AC 29 ms
10,136 KB
testcase_02 AC 30 ms
10,136 KB
testcase_03 AC 30 ms
10,136 KB
testcase_04 WA -
testcase_05 AC 30 ms
10,136 KB
testcase_06 AC 31 ms
10,136 KB
testcase_07 AC 28 ms
10,136 KB
testcase_08 AC 28 ms
10,136 KB
testcase_09 AC 29 ms
10,136 KB
testcase_10 AC 30 ms
10,136 KB
testcase_11 AC 29 ms
10,136 KB
testcase_12 AC 31 ms
10,136 KB
testcase_13 AC 29 ms
10,136 KB
testcase_14 AC 31 ms
10,160 KB
testcase_15 AC 33 ms
10,196 KB
testcase_16 AC 40 ms
10,220 KB
testcase_17 AC 74 ms
10,980 KB
testcase_18 AC 254 ms
13,816 KB
testcase_19 AC 490 ms
17,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# -*- coding: utf-8 -*-

import array

MODULUS = 10 ** 9 + 7


if __name__ == "__main__":
    n = int(input())
    dp = array.array("Q", [1, 2, 2])
    for i in range(3, n):
        dp.append((dp[i - 2] + dp[i - 3]) % MODULUS)
    print(dp[-1])
0