結果

問題 No.657 テトラナッチ数列 Easy
ユーザー Meso MesoMeso Meso
提出日時 2024-12-30 12:27:38
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 704 ms / 2,000 ms
コード長 230 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 18,560 KB
最終ジャッジ日時 2024-12-30 12:27:50
合計ジャッジ時間 12,021 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 566 ms
18,304 KB
testcase_01 AC 537 ms
18,424 KB
testcase_02 AC 546 ms
18,432 KB
testcase_03 AC 557 ms
18,432 KB
testcase_04 AC 531 ms
18,472 KB
testcase_05 AC 603 ms
18,344 KB
testcase_06 AC 539 ms
18,304 KB
testcase_07 AC 558 ms
18,340 KB
testcase_08 AC 505 ms
18,304 KB
testcase_09 AC 592 ms
18,432 KB
testcase_10 AC 574 ms
18,364 KB
testcase_11 AC 660 ms
18,560 KB
testcase_12 AC 625 ms
18,432 KB
testcase_13 AC 617 ms
18,304 KB
testcase_14 AC 704 ms
18,368 KB
testcase_15 AC 618 ms
18,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
dp = [0] * (pow(10, 6))
dp[0] = 0
dp[1] = 0
dp[2] = 0
dp[3] = 1


for i in range(4, pow(10, 6)):
    dp[i] = (dp[i-1] + dp[i-2] + dp[i-3] + dp[i-4]) % 17

for i in range(n):
    j = int(input())
    print(dp[j-1])
0