結果

問題 No.657 テトラナッチ数列 Easy
ユーザー terrafarmterrafarm
提出日時 2020-06-21 08:38:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 201 bytes
コンパイル時間 589 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 84,676 KB
最終ジャッジ日時 2024-07-03 17:50:49
合計ジャッジ時間 2,323 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
66,800 KB
testcase_01 AC 51 ms
66,992 KB
testcase_02 AC 50 ms
66,616 KB
testcase_03 AC 50 ms
66,388 KB
testcase_04 AC 50 ms
65,804 KB
testcase_05 AC 81 ms
84,144 KB
testcase_06 AC 48 ms
66,184 KB
testcase_07 AC 49 ms
66,008 KB
testcase_08 AC 49 ms
66,164 KB
testcase_09 AC 83 ms
84,020 KB
testcase_10 AC 85 ms
84,380 KB
testcase_11 AC 86 ms
84,468 KB
testcase_12 AC 85 ms
84,316 KB
testcase_13 AC 84 ms
84,544 KB
testcase_14 AC 85 ms
84,676 KB
testcase_15 AC 83 ms
84,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Q = int(input())
N = [int(input()) for _ in range(Q)]
seq = [0] * 1001000
seq[4] = 1
for i in range(5,1000500):
    seq[i] = (seq[i-1] + seq[i-2] + seq[i-3] + seq[i-4])%17
for n in N:
    print(seq[n])
0