結果

問題 No.657 テトラナッチ数列 Easy
ユーザー pluto77pluto77
提出日時 2018-03-04 09:32:32
言語 Python2
(2.7.18)
結果
AC  
実行時間 326 ms / 2,000 ms
コード長 199 bytes
コンパイル時間 50 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 14,592 KB
最終ジャッジ日時 2024-07-06 14:08:14
合計ジャッジ時間 2,621 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,816 KB
testcase_01 AC 9 ms
6,940 KB
testcase_02 AC 9 ms
6,940 KB
testcase_03 AC 8 ms
6,940 KB
testcase_04 AC 294 ms
13,440 KB
testcase_05 AC 26 ms
6,944 KB
testcase_06 AC 10 ms
6,940 KB
testcase_07 AC 10 ms
6,944 KB
testcase_08 AC 306 ms
13,952 KB
testcase_09 AC 27 ms
6,940 KB
testcase_10 AC 30 ms
6,940 KB
testcase_11 AC 30 ms
6,944 KB
testcase_12 AC 56 ms
7,424 KB
testcase_13 AC 324 ms
14,592 KB
testcase_14 AC 324 ms
14,592 KB
testcase_15 AC 326 ms
14,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki657

def tet(x):
 t=[0,0,0,1]
 for i in xrange(5,x+1):
  t+=[sum(t[-4:])%17]
 return t

q=int(raw_input())
l=[int(raw_input()) for i in xrange(q)]
res=tet(max(l))
for x in l:
 print res[x-1]%17
0