結果

問題 No.657 テトラナッチ数列 Easy
ユーザー bellangeldindonbellangeldindon
提出日時 2019-04-02 17:40:07
言語 Python2
(2.7.18)
結果
AC  
実行時間 326 ms / 2,000 ms
コード長 171 bytes
コンパイル時間 48 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 46,080 KB
最終ジャッジ日時 2024-11-30 13:55:32
合計ジャッジ時間 5,979 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 321 ms
46,080 KB
testcase_01 AC 305 ms
45,952 KB
testcase_02 AC 299 ms
45,824 KB
testcase_03 AC 306 ms
45,952 KB
testcase_04 AC 296 ms
45,952 KB
testcase_05 AC 312 ms
45,824 KB
testcase_06 AC 308 ms
45,952 KB
testcase_07 AC 304 ms
45,952 KB
testcase_08 AC 311 ms
45,824 KB
testcase_09 AC 326 ms
45,824 KB
testcase_10 AC 322 ms
45,952 KB
testcase_11 AC 322 ms
45,824 KB
testcase_12 AC 325 ms
45,952 KB
testcase_13 AC 321 ms
45,952 KB
testcase_14 AC 321 ms
45,952 KB
testcase_15 AC 324 ms
45,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

lst = [0, 0, 0, 1]
for i in range(4, 1000000):
	lst.append((lst[-1]+lst[-2]+lst[-3]+lst[-4])%17)

Q = int(raw_input())
for i in range(0, Q):
	print lst[int(raw_input())-1]
0