結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
65,280 KB
testcase_01 AC 56 ms
65,152 KB
testcase_02 AC 55 ms
65,536 KB
testcase_03 AC 52 ms
65,280 KB
testcase_04 AC 52 ms
65,280 KB
testcase_05 AC 65 ms
73,088 KB
testcase_06 AC 53 ms
65,408 KB
testcase_07 AC 54 ms
65,280 KB
testcase_08 AC 57 ms
65,280 KB
testcase_09 AC 65 ms
73,728 KB
testcase_10 AC 66 ms
73,344 KB
testcase_11 AC 65 ms
73,472 KB
testcase_12 AC 67 ms
73,984 KB
testcase_13 AC 65 ms
73,216 KB
testcase_14 AC 67 ms
73,856 KB
testcase_15 AC 67 ms
73,344 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