結果

問題 No.657 テトラナッチ数列 Easy
ユーザー takakintakakin
提出日時 2020-05-07 22:54:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 528 ms / 2,000 ms
コード長 203 bytes
コンパイル時間 120 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 18,820 KB
最終ジャッジ日時 2024-07-03 09:40:13
合計ジャッジ時間 9,444 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 478 ms
18,220 KB
testcase_01 AC 483 ms
18,396 KB
testcase_02 AC 475 ms
18,284 KB
testcase_03 AC 490 ms
18,340 KB
testcase_04 AC 528 ms
18,340 KB
testcase_05 AC 525 ms
18,656 KB
testcase_06 AC 490 ms
18,508 KB
testcase_07 AC 501 ms
18,328 KB
testcase_08 AC 491 ms
18,504 KB
testcase_09 AC 515 ms
18,780 KB
testcase_10 AC 493 ms
18,596 KB
testcase_11 AC 513 ms
18,684 KB
testcase_12 AC 502 ms
18,656 KB
testcase_13 AC 502 ms
18,820 KB
testcase_14 AC 527 ms
18,780 KB
testcase_15 AC 513 ms
18,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
q=int(input())
T=[0]*(10**6+1)
T[4]=1
for i in range(5,10**6+1):
  T[i]=(T[i-1]+T[i-2]+T[i-3]+T[i-4])%17
for _ in range(q):
  print(T[int(input())])
0