結果

問題 No.657 テトラナッチ数列 Easy
ユーザー Mr.FukuMr.Fuku
提出日時 2018-08-09 20:55:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 515 ms / 2,000 ms
コード長 155 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 19,200 KB
最終ジャッジ日時 2024-09-23 05:06:06
合計ジャッジ時間 9,469 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 488 ms
18,560 KB
testcase_01 AC 479 ms
18,560 KB
testcase_02 AC 486 ms
18,432 KB
testcase_03 AC 483 ms
18,688 KB
testcase_04 AC 489 ms
18,432 KB
testcase_05 AC 509 ms
18,944 KB
testcase_06 AC 477 ms
18,432 KB
testcase_07 AC 485 ms
18,560 KB
testcase_08 AC 493 ms
18,688 KB
testcase_09 AC 513 ms
19,072 KB
testcase_10 AC 513 ms
19,072 KB
testcase_11 AC 508 ms
19,200 KB
testcase_12 AC 510 ms
19,072 KB
testcase_13 AC 507 ms
19,072 KB
testcase_14 AC 515 ms
19,072 KB
testcase_15 AC 509 ms
19,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
lst = [int(input()) for i in range(n)]
t = [0,0,0,0,1]
for i in range(1000000):
    t.append(sum(t[-4:])%17)
for i in lst:
    print(t[i])
0