結果
問題 | No.658 テトラナッチ数列 Hard |
ユーザー | Ryuto |
提出日時 | 2018-03-19 12:37:32 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 346 bytes |
コンパイル時間 | 329 ms |
コンパイル使用メモリ | 82,336 KB |
実行使用メモリ | 428,480 KB |
最終ジャッジ日時 | 2024-06-10 02:51:09 |
合計ジャッジ時間 | 4,159 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
60,572 KB |
testcase_01 | AC | 33 ms
52,504 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
ソースコード
#!/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])