結果

問題 No.657 テトラナッチ数列 Easy
ユーザー pochiMasahiropochiMasahiro
提出日時 2018-03-07 01:15:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
実行時間 -
コード長 233 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 818,068 KB
最終ジャッジ日時 2024-09-22 05:08:13
合計ジャッジ時間 2,754 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
18,532 KB
testcase_01 AC 38 ms
18,524 KB
testcase_02 AC 39 ms
18,536 KB
testcase_03 AC 39 ms
18,484 KB
testcase_04 MLE -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

Q_num = int(input())
query = [ int(input()) for _ in range(Q_num) ]
q_max = max(query)

Ti = [0] * 1000000
Ti[3] = 1

for i in range(4, q_max):
    Ti[i] = Ti[i-4] + Ti[i-3] + Ti[i-2] + Ti[i-1]

for n in query:
    print(Ti[n-1]%17)
0