結果

問題 No.657 テトラナッチ数列 Easy
ユーザー brthyyjpbrthyyjp
提出日時 2020-06-04 08:33:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 424 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 81,536 KB
実行使用メモリ 73,984 KB
最終ジャッジ日時 2024-11-27 22:08:40
合計ジャッジ時間 2,185 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
64,896 KB
testcase_01 AC 57 ms
64,640 KB
testcase_02 AC 56 ms
64,768 KB
testcase_03 AC 57 ms
64,896 KB
testcase_04 AC 56 ms
65,280 KB
testcase_05 AC 71 ms
73,216 KB
testcase_06 AC 55 ms
65,536 KB
testcase_07 AC 56 ms
64,896 KB
testcase_08 AC 57 ms
65,280 KB
testcase_09 AC 73 ms
73,472 KB
testcase_10 AC 73 ms
72,960 KB
testcase_11 AC 75 ms
73,600 KB
testcase_12 AC 73 ms
73,216 KB
testcase_13 AC 74 ms
73,344 KB
testcase_14 AC 74 ms
73,984 KB
testcase_15 AC 73 ms
73,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline

def main():
    Q = int(input())
    q = [0]*Q
    for i in range(Q):
        q[i] = int(input())

    n = 10**6+1
    T = [0]*n
    T[0] = 0
    T[1] = 0
    T[2] = 0
    T[3] = 1
    for i in range(4, n):
        T[i] = T[i-4]+T[i-3]+T[i-2]+T[i-1]
        T[i] %= 17
    #print(T[0:10])
    for i in range(Q):
        print(T[q[i]-1])


if __name__ == '__main__':
    main()
0