結果

問題 No.657 テトラナッチ数列 Easy
ユーザー mokomoko
提出日時 2018-04-03 09:02:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 797 ms / 2,000 ms
コード長 183 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 18,688 KB
最終ジャッジ日時 2024-06-26 07:06:57
合計ジャッジ時間 13,546 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 705 ms
18,560 KB
testcase_01 AC 714 ms
18,560 KB
testcase_02 AC 716 ms
18,688 KB
testcase_03 AC 700 ms
18,432 KB
testcase_04 AC 705 ms
18,432 KB
testcase_05 AC 762 ms
18,560 KB
testcase_06 AC 708 ms
18,560 KB
testcase_07 AC 702 ms
18,432 KB
testcase_08 AC 707 ms
18,560 KB
testcase_09 AC 760 ms
18,688 KB
testcase_10 AC 759 ms
18,688 KB
testcase_11 AC 797 ms
18,560 KB
testcase_12 AC 749 ms
18,432 KB
testcase_13 AC 765 ms
18,560 KB
testcase_14 AC 772 ms
18,432 KB
testcase_15 AC 794 ms
18,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

dp=[0 for i in range(1000001)]
dp[4]=1
for j in range(1000001-5):
	i=j+5
	dp[i]=dp[i-1]+dp[i-2]+dp[i-3]+dp[i-4]
	dp[i]%=17
q=int(input())
while q:
	q-=1
	n=int(input())
	print(dp[n])
0