結果

問題 No.657 テトラナッチ数列 Easy
ユーザー kohei2019kohei2019
提出日時 2022-03-03 01:07:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 178 bytes
コンパイル時間 691 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 152,472 KB
最終ジャッジ日時 2024-07-16 15:06:59
合計ジャッジ時間 3,296 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
137,228 KB
testcase_01 AC 92 ms
135,892 KB
testcase_02 AC 92 ms
136,516 KB
testcase_03 AC 91 ms
136,400 KB
testcase_04 AC 93 ms
136,652 KB
testcase_05 AC 145 ms
152,176 KB
testcase_06 AC 91 ms
136,380 KB
testcase_07 AC 91 ms
135,352 KB
testcase_08 AC 93 ms
137,020 KB
testcase_09 AC 148 ms
152,076 KB
testcase_10 AC 148 ms
152,064 KB
testcase_11 AC 147 ms
152,012 KB
testcase_12 AC 147 ms
152,208 KB
testcase_13 AC 148 ms
152,160 KB
testcase_14 AC 147 ms
151,972 KB
testcase_15 AC 148 ms
152,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Q = int(input())
lsT = [0,0,0,0,1]

for i in range(5,10**6+1):
    lsT.append((lsT[i-1]+lsT[i-2]+lsT[i-3]+lsT[i-4])%17)

for i in range(Q):
    n = int(input())
    print(lsT[n])
0