結果

問題 No.657 テトラナッチ数列 Easy
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-19 14:51:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 624 ms / 2,000 ms
コード長 169 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 18,688 KB
最終ジャッジ日時 2024-05-02 19:47:01
合計ジャッジ時間 11,129 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 547 ms
18,304 KB
testcase_01 AC 549 ms
18,560 KB
testcase_02 AC 550 ms
18,432 KB
testcase_03 AC 556 ms
18,432 KB
testcase_04 AC 569 ms
18,560 KB
testcase_05 AC 607 ms
18,432 KB
testcase_06 AC 548 ms
18,560 KB
testcase_07 AC 559 ms
18,432 KB
testcase_08 AC 556 ms
18,304 KB
testcase_09 AC 624 ms
18,432 KB
testcase_10 AC 600 ms
18,432 KB
testcase_11 AC 608 ms
18,560 KB
testcase_12 AC 601 ms
18,560 KB
testcase_13 AC 600 ms
18,560 KB
testcase_14 AC 602 ms
18,560 KB
testcase_15 AC 614 ms
18,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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]
    dp[i]%=17
q=int(input())
for _ in range(q):
    print(dp[int(input())])
0