結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 298 ms
46,040 KB
testcase_01 AC 300 ms
46,080 KB
testcase_02 AC 300 ms
46,036 KB
testcase_03 AC 295 ms
46,080 KB
testcase_04 AC 301 ms
46,040 KB
testcase_05 AC 313 ms
45,916 KB
testcase_06 AC 309 ms
46,080 KB
testcase_07 AC 297 ms
46,080 KB
testcase_08 AC 295 ms
46,032 KB
testcase_09 AC 326 ms
45,888 KB
testcase_10 AC 321 ms
45,952 KB
testcase_11 AC 318 ms
46,028 KB
testcase_12 AC 317 ms
45,880 KB
testcase_13 AC 321 ms
46,080 KB
testcase_14 AC 313 ms
45,808 KB
testcase_15 AC 320 ms
46,120 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