結果

問題 No.657 テトラナッチ数列 Easy
ユーザー rlangevinrlangevin
提出日時 2023-01-03 21:17:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 248 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 76,160 KB
最終ジャッジ日時 2024-05-05 07:36:55
合計ジャッジ時間 2,166 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
65,152 KB
testcase_01 AC 63 ms
65,408 KB
testcase_02 AC 60 ms
65,536 KB
testcase_03 AC 60 ms
65,408 KB
testcase_04 AC 59 ms
65,152 KB
testcase_05 AC 79 ms
75,264 KB
testcase_06 AC 60 ms
65,792 KB
testcase_07 AC 60 ms
65,664 KB
testcase_08 AC 60 ms
65,152 KB
testcase_09 AC 80 ms
75,392 KB
testcase_10 AC 79 ms
75,648 KB
testcase_11 AC 80 ms
75,776 KB
testcase_12 AC 81 ms
75,776 KB
testcase_13 AC 81 ms
75,648 KB
testcase_14 AC 81 ms
76,160 KB
testcase_15 AC 81 ms
75,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline

N = 10 ** 6 + 5
T = [0] * N
T[4] = 1
for i in range(5, N):
    T[i] = T[i - 1] + T[i - 2] + T[i - 3] + T[i - 4]
    T[i] %= 17

Q = int(readline())
for _ in range(Q):
    n = int(readline())
    print(T[n])
0