結果

問題 No.657 テトラナッチ数列 Easy
ユーザー June3141June3141
提出日時 2018-10-14 22:06:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 238 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 19,072 KB
最終ジャッジ日時 2024-10-12 18:22:45
合計ジャッジ時間 4,177 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 452 ms
17,792 KB
testcase_05 RE -
testcase_06 AC 27 ms
10,624 KB
testcase_07 AC 27 ms
10,624 KB
testcase_08 AC 529 ms
18,432 KB
testcase_09 AC 57 ms
11,264 KB
testcase_10 AC 63 ms
11,264 KB
testcase_11 AC 61 ms
11,392 KB
testcase_12 AC 103 ms
12,032 KB
testcase_13 AC 557 ms
19,072 KB
testcase_14 AC 548 ms
18,944 KB
testcase_15 AC 548 ms
19,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Q = int(input())
n = [int(input()) for i in range(Q)]

n_max = max(n)
T = [0 for i in range(n_max)]
T[3] = 1

for i in range(4, n_max):
    T[i] = (T[i - 1] + T[i - 2] + T[i - 3] + T[i - 4]) % 17

for i in range(Q):
    print(T[n[i] - 1])
0