結果

問題 No.657 テトラナッチ数列 Easy
ユーザー RyutoRyuto
提出日時 2018-03-19 12:30:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 329 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,668 KB
実行使用メモリ 383,592 KB
最終ジャッジ日時 2024-06-10 02:50:30
合計ジャッジ時間 5,026 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
59,100 KB
testcase_01 AC 35 ms
53,208 KB
testcase_02 AC 32 ms
53,348 KB
testcase_03 AC 33 ms
52,420 KB
testcase_04 AC 156 ms
136,104 KB
testcase_05 AC 67 ms
76,176 KB
testcase_06 AC 33 ms
52,664 KB
testcase_07 AC 31 ms
52,680 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
権限があれば一括ダウンロードができます

ソースコード

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))
    print(tlist[n])
0