結果

問題 No.657 テトラナッチ数列 Easy
ユーザー ntudantuda
提出日時 2022-10-31 18:56:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 198 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 84,224 KB
最終ジャッジ日時 2024-07-08 07:18:55
合計ジャッジ時間 2,488 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
65,408 KB
testcase_01 AC 53 ms
65,664 KB
testcase_02 AC 52 ms
65,792 KB
testcase_03 AC 50 ms
65,408 KB
testcase_04 AC 52 ms
65,408 KB
testcase_05 AC 105 ms
83,712 KB
testcase_06 AC 54 ms
65,792 KB
testcase_07 AC 54 ms
65,664 KB
testcase_08 AC 52 ms
65,408 KB
testcase_09 AC 110 ms
83,712 KB
testcase_10 AC 110 ms
83,712 KB
testcase_11 AC 110 ms
83,840 KB
testcase_12 AC 108 ms
84,224 KB
testcase_13 AC 112 ms
83,968 KB
testcase_14 AC 108 ms
83,584 KB
testcase_15 AC 108 ms
83,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Q = int(input())
N = 10 ** 6
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