結果

問題 No.657 テトラナッチ数列 Easy
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-19 14:51:58
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 616 ms / 2,000 ms
コード長 169 bytes
コンパイル時間 355 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 18,684 KB
最終ジャッジ日時 2024-11-23 13:50:59
合計ジャッジ時間 11,069 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 547 ms
18,408 KB
testcase_01 AC 548 ms
18,388 KB
testcase_02 AC 538 ms
18,332 KB
testcase_03 AC 543 ms
18,400 KB
testcase_04 AC 544 ms
18,512 KB
testcase_05 AC 591 ms
18,472 KB
testcase_06 AC 540 ms
18,472 KB
testcase_07 AC 544 ms
18,632 KB
testcase_08 AC 541 ms
18,468 KB
testcase_09 AC 595 ms
18,468 KB
testcase_10 AC 613 ms
18,684 KB
testcase_11 AC 610 ms
18,524 KB
testcase_12 AC 607 ms
18,520 KB
testcase_13 AC 616 ms
18,452 KB
testcase_14 AC 601 ms
18,464 KB
testcase_15 AC 598 ms
18,476 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