結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,356 KB
testcase_01 AC 39 ms
52,676 KB
testcase_02 AC 37 ms
52,948 KB
testcase_03 AC 36 ms
52,688 KB
testcase_04 AC 161 ms
136,548 KB
testcase_05 AC 68 ms
76,688 KB
testcase_06 AC 36 ms
52,476 KB
testcase_07 AC 34 ms
52,324 KB
testcase_08 AC 164 ms
145,004 KB
testcase_09 AC 74 ms
76,484 KB
testcase_10 AC 93 ms
76,536 KB
testcase_11 AC 91 ms
76,620 KB
testcase_12 AC 97 ms
80,032 KB
testcase_13 AC 218 ms
145,556 KB
testcase_14 AC 227 ms
145,292 KB
testcase_15 AC 224 ms
145,516 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