結果

問題 No.657 テトラナッチ数列 Easy
ユーザー 👑 rin204rin204
提出日時 2022-01-19 20:56:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 156 ms / 2,000 ms
コード長 179 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 152,192 KB
最終ジャッジ日時 2024-11-23 14:03:50
合計ジャッジ時間 2,931 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
135,424 KB
testcase_01 AC 96 ms
134,912 KB
testcase_02 AC 99 ms
134,912 KB
testcase_03 AC 96 ms
134,784 KB
testcase_04 AC 93 ms
135,168 KB
testcase_05 AC 148 ms
151,680 KB
testcase_06 AC 93 ms
135,168 KB
testcase_07 AC 94 ms
135,040 KB
testcase_08 AC 95 ms
135,168 KB
testcase_09 AC 151 ms
152,064 KB
testcase_10 AC 148 ms
152,064 KB
testcase_11 AC 148 ms
152,192 KB
testcase_12 AC 150 ms
152,132 KB
testcase_13 AC 151 ms
151,936 KB
testcase_14 AC 152 ms
151,808 KB
testcase_15 AC 156 ms
152,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 17
T = [0, 0, 0, 0, 1]
for _ in range(10 ** 6):
    T.append((T[-1] + T[-2] + T[-3] + T[-4]) % MOD)

Q = int(input())
for _ in range(Q):
    n = int(input())
    print(T[n])
0