結果

問題 No.658 テトラナッチ数列 Hard
ユーザー ntudantuda
提出日時 2022-10-31 20:10:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 508 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 78,848 KB
最終ジャッジ日時 2024-07-08 08:14:12
合計ジャッジ時間 1,990 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
70,016 KB
testcase_01 AC 52 ms
69,760 KB
testcase_02 AC 54 ms
69,632 KB
testcase_03 AC 57 ms
70,144 KB
testcase_04 AC 104 ms
78,848 KB
testcase_05 AC 104 ms
78,756 KB
testcase_06 AC 108 ms
78,384 KB
testcase_07 AC 106 ms
78,624 KB
testcase_08 AC 104 ms
78,336 KB
testcase_09 AC 105 ms
78,492 KB
testcase_10 AC 103 ms
78,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
Q = int(input())
N = 10 ** 5
T = [0] * (N + 1)
T[4] = 1
dic = defaultdict(int)
tmp = sum(T[1:5])
for i in range(5, N + 1):
    T[i] = tmp
    if tuple(T[i - 4:i]) not in dic:
        dic[tuple(T[i - 4:i])] = i
    else:
        start = dic[tuple(T[i - 4:i])]
        seq = i - start
        break
    tmp += T[i] - T[i - 4]
    tmp %= 17

for _ in range(Q):
    n = int(input())
    if n <= start:
        print(T[n])
    else:
        print(T[start + (n - start) % seq])
0