結果

問題 No.658 テトラナッチ数列 Hard
ユーザー koba-e964koba-e964
提出日時 2021-09-27 12:45:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 318 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 81,736 KB
実行使用メモリ 76,468 KB
最終ジャッジ日時 2024-07-06 08:18:19
合計ジャッジ時間 1,813 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
68,488 KB
testcase_01 AC 57 ms
68,100 KB
testcase_02 AC 55 ms
67,908 KB
testcase_03 AC 56 ms
67,760 KB
testcase_04 AC 73 ms
76,468 KB
testcase_05 AC 72 ms
76,240 KB
testcase_06 AC 71 ms
76,460 KB
testcase_07 AC 74 ms
76,124 KB
testcase_08 AC 72 ms
76,348 KB
testcase_09 AC 74 ms
76,324 KB
testcase_10 AC 73 ms
76,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

import sys
readline = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)

t = [0, 0, 0, 1]
while t[len(t) - 4:] != [1, 0, 0, 0]:
    s = sum(t[len(t) - 4:]) % 17
    t.append(s)

p = len(t) - 3
    
q = int(readline())
for _ in range(q):
    n = int(readline())
    print(t[(n - 1) % p])
0