結果

問題 No.657 テトラナッチ数列 Easy
ユーザー convexineqconvexineq
提出日時 2021-03-12 08:47:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 270 ms / 2,000 ms
コード長 130 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 145,040 KB
最終ジャッジ日時 2024-10-13 18:07:28
合計ジャッジ時間 5,121 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 224 ms
144,140 KB
testcase_01 AC 226 ms
143,760 KB
testcase_02 AC 212 ms
144,268 KB
testcase_03 AC 216 ms
144,012 KB
testcase_04 AC 222 ms
144,392 KB
testcase_05 AC 261 ms
144,904 KB
testcase_06 AC 218 ms
144,140 KB
testcase_07 AC 224 ms
144,268 KB
testcase_08 AC 221 ms
144,144 KB
testcase_09 AC 270 ms
144,780 KB
testcase_10 AC 260 ms
144,964 KB
testcase_11 AC 266 ms
145,040 KB
testcase_12 AC 265 ms
144,776 KB
testcase_13 AC 257 ms
144,780 KB
testcase_14 AC 257 ms
144,780 KB
testcase_15 AC 267 ms
144,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a = [0,0,0,0,1]
for _ in range(10**6):
    a.append(sum(a[-4:])%17)
Q = int(input())
for _ in range(Q):
    print(a[int(input())])
0