結果

問題 No.657 テトラナッチ数列 Easy
ユーザー popketlepopketle
提出日時 2020-01-10 12:42:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 720 ms / 2,000 ms
コード長 179 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 19,172 KB
最終ジャッジ日時 2024-11-23 21:53:53
合計ジャッジ時間 12,886 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 659 ms
18,432 KB
testcase_01 AC 667 ms
18,560 KB
testcase_02 AC 663 ms
18,424 KB
testcase_03 AC 678 ms
18,496 KB
testcase_04 AC 686 ms
18,528 KB
testcase_05 AC 689 ms
18,816 KB
testcase_06 AC 682 ms
18,420 KB
testcase_07 AC 677 ms
18,512 KB
testcase_08 AC 673 ms
18,472 KB
testcase_09 AC 695 ms
18,924 KB
testcase_10 AC 704 ms
19,072 KB
testcase_11 AC 720 ms
19,072 KB
testcase_12 AC 689 ms
19,064 KB
testcase_13 AC 696 ms
19,172 KB
testcase_14 AC 694 ms
19,072 KB
testcase_15 AC 697 ms
19,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

for n in N:
    print(T[n-1])
0