結果

問題 No.657 テトラナッチ数列 Easy
ユーザー MIKI TakushiMIKI Takushi
提出日時 2019-01-02 17:51:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 526 ms / 2,000 ms
コード長 208 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 19,156 KB
最終ジャッジ日時 2024-11-21 06:58:57
合計ジャッジ時間 9,622 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 488 ms
18,476 KB
testcase_01 AC 498 ms
18,456 KB
testcase_02 AC 493 ms
18,460 KB
testcase_03 AC 495 ms
18,456 KB
testcase_04 AC 482 ms
18,528 KB
testcase_05 AC 511 ms
18,860 KB
testcase_06 AC 488 ms
18,520 KB
testcase_07 AC 484 ms
18,464 KB
testcase_08 AC 484 ms
18,500 KB
testcase_09 AC 512 ms
18,984 KB
testcase_10 AC 512 ms
19,000 KB
testcase_11 AC 526 ms
19,156 KB
testcase_12 AC 518 ms
19,136 KB
testcase_13 AC 524 ms
19,096 KB
testcase_14 AC 525 ms
19,104 KB
testcase_15 AC 513 ms
19,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-

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

q = int(input())
ql = [int(input()) for _ in range(q)]

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