結果

問題 No.657 テトラナッチ数列 Easy
ユーザー toyuzukotoyuzuko
提出日時 2020-07-22 22:16:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 698 ms / 2,000 ms
コード長 211 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 18,688 KB
最終ジャッジ日時 2024-06-22 18:43:43
合計ジャッジ時間 11,792 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 594 ms
18,688 KB
testcase_01 AC 579 ms
18,560 KB
testcase_02 AC 581 ms
18,688 KB
testcase_03 AC 587 ms
18,688 KB
testcase_04 AC 581 ms
18,560 KB
testcase_05 AC 640 ms
18,688 KB
testcase_06 AC 586 ms
18,688 KB
testcase_07 AC 606 ms
18,688 KB
testcase_08 AC 580 ms
18,560 KB
testcase_09 AC 698 ms
18,688 KB
testcase_10 AC 677 ms
18,560 KB
testcase_11 AC 647 ms
18,688 KB
testcase_12 AC 637 ms
18,688 KB
testcase_13 AC 641 ms
18,560 KB
testcase_14 AC 646 ms
18,688 KB
testcase_15 AC 636 ms
18,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Q = int(input())
T = [0 for _ in range(10**6)]
T[3] = 1

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

for _ in range(Q):
    n = int(input())
    print(T[n - 1])
0