結果

問題 No.657 テトラナッチ数列 Easy
ユーザー ntudantuda
提出日時 2022-10-31 18:55:45
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 193 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 75,904 KB
最終ジャッジ日時 2024-07-08 07:18:05
合計ジャッジ時間 1,589 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 37 ms
51,456 KB
testcase_02 AC 34 ms
51,584 KB
testcase_03 AC 34 ms
52,096 KB
testcase_04 RE -
testcase_05 AC 92 ms
75,904 KB
testcase_06 AC 34 ms
51,456 KB
testcase_07 AC 33 ms
51,584 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

Q = int(input())
N = 10
T = [0] * (N + 1)
T[4] = 1
tmp = sum(T[1:5])
for i in range(5, N+1):
    T[i] = tmp
    tmp += T[i] - T[i-4]
    tmp %= 17
for _ in range(Q):
    print(T[int(input())])
0