結果

問題 No.657 テトラナッチ数列 Easy
ユーザー koba-e964koba-e964
提出日時 2021-09-27 12:50:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 314 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,052 KB
実行使用メモリ 76,408 KB
最終ジャッジ日時 2024-07-06 08:27:18
合計ジャッジ時間 1,753 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
69,424 KB
testcase_01 AC 45 ms
67,368 KB
testcase_02 AC 44 ms
68,876 KB
testcase_03 AC 45 ms
68,584 KB
testcase_04 AC 44 ms
69,280 KB
testcase_05 AC 57 ms
75,992 KB
testcase_06 AC 45 ms
68,700 KB
testcase_07 AC 45 ms
67,696 KB
testcase_08 AC 44 ms
67,444 KB
testcase_09 AC 58 ms
76,408 KB
testcase_10 AC 63 ms
76,332 KB
testcase_11 AC 59 ms
76,244 KB
testcase_12 AC 60 ms
76,056 KB
testcase_13 AC 59 ms
76,360 KB
testcase_14 AC 59 ms
76,236 KB
testcase_15 AC 58 ms
76,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

import sys
readline = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)

t = [0, 0, 0, 1]
while t[len(t) - 4:] != [1, 0, 0, 0]:
    s = sum(t[len(t) - 4:]) % 17
    t.append(s)

p = len(t) - 3

q = int(readline())
for _ in range(q):
    n = int(readline())
    print(t[(n - 1) % p])
0