結果

問題 No.657 テトラナッチ数列 Easy
ユーザー ああいいああいい
提出日時 2021-12-06 15:05:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 563 ms / 2,000 ms
コード長 188 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 18,628 KB
最終ジャッジ日時 2024-07-07 09:15:13
合計ジャッジ時間 9,622 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 483 ms
18,488 KB
testcase_01 AC 497 ms
18,492 KB
testcase_02 AC 494 ms
18,612 KB
testcase_03 AC 503 ms
18,464 KB
testcase_04 AC 489 ms
18,452 KB
testcase_05 AC 538 ms
18,512 KB
testcase_06 AC 481 ms
18,448 KB
testcase_07 AC 511 ms
18,448 KB
testcase_08 AC 505 ms
18,504 KB
testcase_09 AC 563 ms
18,444 KB
testcase_10 AC 541 ms
18,444 KB
testcase_11 AC 552 ms
18,480 KB
testcase_12 AC 532 ms
18,524 KB
testcase_13 AC 541 ms
18,628 KB
testcase_14 AC 529 ms
18,512 KB
testcase_15 AC 530 ms
18,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


T = [0] * (10 ** 6 + 1)
T[4] = 1
for i in range(5,10 ** 6 + 1):
    T[i] = T[i-1] + T[i-2] + T[i-3] + T[i-4]
    T[i] %= 17
Q = int(input())
for _ in range(Q):
    print(T[int(input())])
0