結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
65,792 KB
testcase_01 AC 54 ms
65,664 KB
testcase_02 AC 54 ms
65,792 KB
testcase_03 AC 54 ms
65,920 KB
testcase_04 AC 56 ms
65,920 KB
testcase_05 AC 70 ms
75,776 KB
testcase_06 AC 55 ms
66,304 KB
testcase_07 AC 56 ms
65,792 KB
testcase_08 AC 56 ms
65,920 KB
testcase_09 AC 69 ms
75,776 KB
testcase_10 AC 76 ms
76,160 KB
testcase_11 AC 72 ms
76,288 KB
testcase_12 AC 71 ms
75,904 KB
testcase_13 AC 72 ms
75,904 KB
testcase_14 AC 71 ms
76,288 KB
testcase_15 AC 73 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