結果

問題 No.657 テトラナッチ数列 Easy
ユーザー DexctersuDexctersu
提出日時 2018-03-19 23:50:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 492 ms / 2,000 ms
コード長 165 bytes
コンパイル時間 498 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 19,180 KB
最終ジャッジ日時 2024-06-11 21:02:23
合計ジャッジ時間 8,790 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 439 ms
18,556 KB
testcase_01 AC 428 ms
18,356 KB
testcase_02 AC 448 ms
18,556 KB
testcase_03 AC 441 ms
18,392 KB
testcase_04 AC 433 ms
18,484 KB
testcase_05 AC 448 ms
18,784 KB
testcase_06 AC 439 ms
18,564 KB
testcase_07 AC 435 ms
18,452 KB
testcase_08 AC 440 ms
18,532 KB
testcase_09 AC 459 ms
19,072 KB
testcase_10 AC 460 ms
18,996 KB
testcase_11 AC 459 ms
18,996 KB
testcase_12 AC 492 ms
18,992 KB
testcase_13 AC 448 ms
19,180 KB
testcase_14 AC 484 ms
18,944 KB
testcase_15 AC 481 ms
18,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

q=int(input())
n=[int(input())for i in range(q)]
a=10**6
t=[0]*a
t[3]=1
for i in range(4,a):
    t[i]=(t[i-4]+t[i-3]+t[i-2]+t[i-1])%17
for j in n:
    print(t[j-1])
0