結果

問題 No.314 ケンケンパ
ユーザー はむ吉🐹はむ吉🐹
提出日時 2015-12-25 20:31:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 506 ms / 1,000 ms
コード長 708 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 26,300 KB
最終ジャッジ日時 2024-09-19 00:00:27
合計ジャッジ時間 3,494 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 503 ms
26,128 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 32 ms
10,752 KB
testcase_08 AC 32 ms
10,624 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 32 ms
10,752 KB
testcase_12 AC 32 ms
10,624 KB
testcase_13 AC 32 ms
10,752 KB
testcase_14 AC 34 ms
10,752 KB
testcase_15 AC 37 ms
10,752 KB
testcase_16 AC 44 ms
11,136 KB
testcase_17 AC 79 ms
12,160 KB
testcase_18 AC 259 ms
18,176 KB
testcase_19 AC 506 ms
26,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

import array

UNDETERMINED = -1
MODULUS = 10 ** 9 + 7
ONE = 1
TWO = 2
THREE = 2


class Kenkenpa(object):

    def __init__(self, max_number, one=ONE, two=TWO, three=THREE, modulus=MODULUS):
        self.modulus = modulus
        self.memo = array.array("q", [UNDETERMINED] * (max(4, max_number + 1)))
        self.memo[1] = one
        self.memo[2] = two
        self.memo[3] = three

    def count_courses(self, n):
        for x in range(4, n + 1):
            self.memo[x] = (self.memo[x - 2] + self.memo[x - 3]) % self.modulus
        return self.memo[n]


if __name__ == "__main__":
    n = int(input())
    k = Kenkenpa(n)
    print(k.count_courses(n))
0