結果

問題 No.657 テトラナッチ数列 Easy
ユーザー zbxahzbxah
提出日時 2018-03-05 11:30:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 367 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 18,080 KB
最終ジャッジ日時 2024-07-19 09:05:02
合計ジャッジ時間 6,655 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
17,696 KB
testcase_01 AC 27 ms
10,496 KB
testcase_02 AC 27 ms
10,496 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 187 ms
10,624 KB
testcase_05 AC 52 ms
10,880 KB
testcase_06 AC 27 ms
10,496 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 291 ms
10,624 KB
testcase_09 AC 74 ms
11,392 KB
testcase_10 AC 975 ms
11,776 KB
testcase_11 AC 1,015 ms
11,648 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

tetranacci = {1: 0, 2: 0, 3: 0, 4: 1}
Q = int(input())
xs = [int(input()) for _ in range(Q)]


def t(n: int):
    a, b, c, d = tetranacci[4], tetranacci[3], tetranacci[2], tetranacci[1]
    for i in range(5, n + 1):
        a, b, c, d = (a + b + c + d) % 17, a, b, c
        if i in xs:
            tetranacci[i] = a


t(max(xs))
for x in xs:
    print(tetranacci[x])
0