結果

問題 No.657 テトラナッチ数列 Easy
ユーザー aaaaaaaaaa
提出日時 2018-03-06 00:12:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 675 ms / 2,000 ms
コード長 108 bytes
コンパイル時間 586 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 18,688 KB
最終ジャッジ日時 2024-09-14 00:03:58
合計ジャッジ時間 11,890 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 605 ms
18,432 KB
testcase_01 AC 616 ms
18,560 KB
testcase_02 AC 604 ms
18,688 KB
testcase_03 AC 610 ms
18,560 KB
testcase_04 AC 615 ms
18,560 KB
testcase_05 AC 665 ms
18,560 KB
testcase_06 AC 611 ms
18,432 KB
testcase_07 AC 611 ms
18,560 KB
testcase_08 AC 612 ms
18,688 KB
testcase_09 AC 663 ms
18,560 KB
testcase_10 AC 666 ms
18,560 KB
testcase_11 AC 670 ms
18,688 KB
testcase_12 AC 661 ms
18,432 KB
testcase_13 AC 662 ms
18,688 KB
testcase_14 AC 675 ms
18,560 KB
testcase_15 AC 670 ms
18,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a=[0,0,0,1]
for _ in range(4,10**6+1):a+=[sum(a[-4:])%17]
for _ in [0]*int(input()):print(a[~-int(input())])
0