結果

問題 No.657 テトラナッチ数列 Easy
ユーザー ttrttr
提出日時 2020-02-15 20:50:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 607 ms / 2,000 ms
コード長 198 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 19,048 KB
最終ジャッジ日時 2024-10-06 14:04:02
合計ジャッジ時間 10,414 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 556 ms
18,432 KB
testcase_01 AC 538 ms
18,344 KB
testcase_02 AC 507 ms
18,560 KB
testcase_03 AC 513 ms
18,432 KB
testcase_04 AC 557 ms
18,304 KB
testcase_05 AC 536 ms
18,688 KB
testcase_06 AC 534 ms
18,304 KB
testcase_07 AC 527 ms
18,432 KB
testcase_08 AC 527 ms
18,432 KB
testcase_09 AC 543 ms
18,944 KB
testcase_10 AC 541 ms
19,048 KB
testcase_11 AC 537 ms
18,924 KB
testcase_12 AC 607 ms
18,988 KB
testcase_13 AC 542 ms
18,816 KB
testcase_14 AC 571 ms
18,816 KB
testcase_15 AC 554 ms
18,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Q = int(input())
L = [int(input()) for _ in range(Q)]

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

for q in L:
    print(T[q])
0