結果

問題 No.657 テトラナッチ数列 Easy
ユーザー zbxahzbxah
提出日時 2018-03-05 11:16:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 332 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 94,128 KB
最終ジャッジ日時 2024-07-19 08:35:59
合計ジャッジ時間 7,773 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,496 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 28 ms
10,496 KB
testcase_04 AC 255 ms
93,668 KB
testcase_05 AC 75 ms
10,624 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 25 ms
10,624 KB
testcase_08 AC 290 ms
94,128 KB
testcase_09 AC 89 ms
10,624 KB
testcase_10 AC 104 ms
11,136 KB
testcase_11 AC 104 ms
11,264 KB
testcase_12 AC 313 ms
21,168 KB
testcase_13 AC 1,374 ms
93,896 KB
testcase_14 TLE -
testcase_15 AC 1,773 ms
94,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

cash = {1: 0, 2: 0, 3: 0, 4: 1}


def t(n: int) -> int:
    if n in cash:
        return cash[n]
    a, b, c, d = 1, 0, 0, 0  # n-1, ..., n-4
    for i in range(5, n + 1):
        a, b, c, d = (a + b + c + d) % 17, a, b, c
        cash[i] = a
    return a


Q = int(input())
for _ in range(Q):
    nq = int(input())
    print(t(nq))
0