結果

問題 No.657 テトラナッチ数列 Easy
ユーザー alexara1123alexara1123
提出日時 2019-09-21 13:03:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 274 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 81,912 KB
実行使用メモリ 84,284 KB
最終ジャッジ日時 2024-09-17 20:40:30
合計ジャッジ時間 2,369 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
65,472 KB
testcase_01 AC 48 ms
66,660 KB
testcase_02 AC 47 ms
66,228 KB
testcase_03 AC 45 ms
66,112 KB
testcase_04 AC 45 ms
66,304 KB
testcase_05 AC 92 ms
83,696 KB
testcase_06 AC 49 ms
67,036 KB
testcase_07 AC 50 ms
67,112 KB
testcase_08 AC 46 ms
66,104 KB
testcase_09 AC 95 ms
83,784 KB
testcase_10 AC 91 ms
83,928 KB
testcase_11 AC 93 ms
83,528 KB
testcase_12 AC 102 ms
84,284 KB
testcase_13 AC 89 ms
83,804 KB
testcase_14 AC 89 ms
83,748 KB
testcase_15 AC 92 ms
83,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    q = int(input())
    t = [0] * 1001000
    t[3] = 1
    for i in range(4, 1000500):
        t[i] = (t[i - 1] + t[i - 2] + t[i - 3] + t[i - 4]) % 17
    for i in range(q):
        n = int(input())
        print(t[n-1])


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