結果

問題 No.657 テトラナッチ数列 Easy
ユーザー wajima_wataruwajima_wataru
提出日時 2018-03-04 23:31:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 360 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-07-17 23:01:55
合計ジャッジ時間 1,943 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
11,136 KB
testcase_01 AC 31 ms
11,136 KB
testcase_02 AC 30 ms
11,136 KB
testcase_03 AC 30 ms
11,136 KB
testcase_04 AC 32 ms
11,264 KB
testcase_05 AC 77 ms
11,136 KB
testcase_06 AC 31 ms
11,136 KB
testcase_07 AC 32 ms
11,264 KB
testcase_08 AC 31 ms
11,136 KB
testcase_09 AC 81 ms
11,136 KB
testcase_10 AC 88 ms
11,136 KB
testcase_11 AC 92 ms
11,136 KB
testcase_12 AC 92 ms
11,136 KB
testcase_13 AC 84 ms
11,136 KB
testcase_14 AC 81 ms
11,264 KB
testcase_15 AC 84 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = {
    1: 0,
    2: 0,
    3: 0,
    4: 1
}


def tetra(i):
    if i in T:
        return T[i]
    else:
        t = (tetra(i - 1) % 17 + tetra(i - 2) % 17 + tetra(i - 3) % 17 + tetra(i - 4) % 17) % 17
        T[i] = t
        return t


for i in range(5, 4917):
    tetra(i)

Q = int(input())
for _ in range(Q):
    print(T[(int(input()) - 1) % 4912 + 1])
0