結果

問題 No.657 テトラナッチ数列 Easy
ユーザー RyutoRyuto
提出日時 2018-03-19 12:35:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 270 ms / 2,000 ms
コード長 346 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 145,528 KB
最終ジャッジ日時 2024-12-31 10:39:16
合計ジャッジ時間 3,058 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,460 KB
testcase_01 AC 38 ms
52,132 KB
testcase_02 AC 38 ms
52,820 KB
testcase_03 AC 38 ms
52,616 KB
testcase_04 AC 208 ms
136,896 KB
testcase_05 AC 81 ms
76,452 KB
testcase_06 AC 39 ms
52,992 KB
testcase_07 AC 39 ms
52,944 KB
testcase_08 AC 219 ms
144,668 KB
testcase_09 AC 82 ms
76,548 KB
testcase_10 AC 93 ms
76,712 KB
testcase_11 AC 87 ms
76,564 KB
testcase_12 AC 109 ms
79,644 KB
testcase_13 AC 263 ms
145,528 KB
testcase_14 AC 267 ms
145,444 KB
testcase_15 AC 270 ms
145,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python

def Tn(n, tlist):
    ans = sum(tlist[n-4:n]) % 17
    return ans

Q = int(input())
inval = []
for i in range(Q):
    inval.append(int(input()))
tlist = [0, 0, 0, 0, 1]
nmax = 4

for n in inval:
    if n > nmax:
        for i in range(nmax+1,n+1):
            tlist.append(Tn(i,tlist))
        nmax = n
    print(tlist[n])
0