結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 265 ms
45,952 KB
testcase_01 AC 270 ms
45,952 KB
testcase_02 WA -
testcase_03 AC 269 ms
46,020 KB
testcase_04 WA -
testcase_05 AC 290 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])%17)

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