結果

問題 No.657 テトラナッチ数列 Easy
ユーザー yakeshibayakeshiba
提出日時 2020-11-01 02:33:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 195 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 81,824 KB
実行使用メモリ 84,176 KB
最終ジャッジ日時 2024-07-22 05:36:57
合計ジャッジ時間 2,632 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
67,496 KB
testcase_01 AC 53 ms
65,852 KB
testcase_02 AC 53 ms
66,512 KB
testcase_03 AC 54 ms
65,880 KB
testcase_04 AC 54 ms
65,992 KB
testcase_05 AC 108 ms
84,176 KB
testcase_06 AC 55 ms
66,616 KB
testcase_07 AC 53 ms
65,956 KB
testcase_08 AC 53 ms
66,060 KB
testcase_09 AC 109 ms
83,856 KB
testcase_10 AC 109 ms
83,864 KB
testcase_11 AC 109 ms
83,836 KB
testcase_12 AC 110 ms
83,896 KB
testcase_13 AC 110 ms
83,692 KB
testcase_14 AC 110 ms
84,040 KB
testcase_15 AC 111 ms
83,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 17

q = int(input())

dp = [0]*(10**6+1)
dp[4] = 1
for i in range(5,10**6+1):
    dp[i] = (dp[i-1]+dp[i-2]+dp[i-3]+dp[i-4])%mod
    
for _ in range(q):
    n = int(input())
    print(dp[n])
0