結果

問題 No.657 テトラナッチ数列 Easy
ユーザー flippergoflippergo
提出日時 2024-12-23 15:20:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 168 ms / 2,000 ms
コード長 170 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 84,224 KB
最終ジャッジ日時 2024-12-23 15:20:09
合計ジャッジ時間 2,690 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
65,536 KB
testcase_01 AC 64 ms
65,536 KB
testcase_02 AC 62 ms
65,664 KB
testcase_03 AC 66 ms
65,664 KB
testcase_04 AC 65 ms
65,664 KB
testcase_05 AC 130 ms
83,584 KB
testcase_06 AC 64 ms
65,664 KB
testcase_07 AC 64 ms
65,664 KB
testcase_08 AC 63 ms
65,664 KB
testcase_09 AC 132 ms
83,584 KB
testcase_10 AC 131 ms
83,840 KB
testcase_11 AC 131 ms
84,224 KB
testcase_12 AC 132 ms
83,712 KB
testcase_13 AC 134 ms
83,840 KB
testcase_14 AC 168 ms
83,968 KB
testcase_15 AC 134 ms
83,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 17
Q = int(input())
T = [0]*(10**6+1)
T[4] = 1
for i in range(5,10**6+1):
    T[i] = (T[i-1]+T[i-2]+T[i-3]+T[i-4])%MOD
for _ in range(Q):
    print(T[int(input())])
0