結果

問題 No.657 テトラナッチ数列 Easy
ユーザー hedwig100hedwig100
提出日時 2020-05-12 21:25:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 345 ms / 2,000 ms
コード長 457 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 19,456 KB
最終ジャッジ日時 2024-09-13 23:35:40
合計ジャッジ時間 6,682 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 319 ms
18,432 KB
testcase_01 AC 321 ms
18,560 KB
testcase_02 AC 317 ms
18,688 KB
testcase_03 AC 317 ms
18,432 KB
testcase_04 AC 320 ms
18,432 KB
testcase_05 AC 340 ms
19,328 KB
testcase_06 AC 316 ms
18,432 KB
testcase_07 AC 320 ms
18,432 KB
testcase_08 AC 319 ms
18,432 KB
testcase_09 AC 343 ms
19,200 KB
testcase_10 AC 342 ms
19,328 KB
testcase_11 AC 342 ms
19,456 KB
testcase_12 AC 344 ms
19,328 KB
testcase_13 AC 345 ms
19,456 KB
testcase_14 AC 342 ms
19,456 KB
testcase_15 AC 343 ms
19,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(100000000)
MOD = 17
INF = 10 ** 15
from bisect import bisect_left,bisect_right

def main():  
    Q = int(input())
    Ns = [int(input()) for _ in range(Q)]
    tetora = [0] * 1000001
    tetora[4] = 1
    for i in range(5,1000001):
        tetora[i] = tetora[i - 1] + tetora[i - 2] + tetora[i - 3] + tetora[i - 4]
        tetora[i] %= MOD
    print(*[tetora[q] for q in Ns],sep = '\n')
if __name__ == '__main__':
    main()
0