結果

問題 No.657 テトラナッチ数列 Easy
ユーザー bellangeldindonbellangeldindon
提出日時 2019-04-02 17:37:37
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 169 bytes
コンパイル時間 1,062 ms
コンパイル使用メモリ 6,784 KB
実行使用メモリ 45,952 KB
最終ジャッジ日時 2024-05-07 18:54:02
合計ジャッジ時間 6,375 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 299 ms
45,952 KB
testcase_01 AC 303 ms
45,952 KB
testcase_02 WA -
testcase_03 AC 296 ms
45,936 KB
testcase_04 WA -
testcase_05 AC 306 ms
45,952 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
権限があれば一括ダウンロードができます

ソースコード

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())]
0