結果
問題 | No.657 テトラナッチ数列 Easy |
ユーザー | twkmath |
提出日時 | 2018-03-07 00:01:03 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 275 bytes |
コンパイル時間 | 104 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 17,824 KB |
最終ジャッジ日時 | 2024-09-22 03:42:17 |
合計ジャッジ時間 | 3,923 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
17,696 KB |
testcase_01 | AC | 29 ms
10,752 KB |
testcase_02 | AC | 31 ms
10,880 KB |
testcase_03 | AC | 29 ms
10,752 KB |
testcase_04 | RE | - |
testcase_05 | AC | 60 ms
11,008 KB |
testcase_06 | AC | 29 ms
10,752 KB |
testcase_07 | AC | 29 ms
10,752 KB |
testcase_08 | TLE | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
ソースコード
def tetra_nacci(k): if k<4: return 0 elif k==4: return 1 else: return tetra_nacci(k-1)+tetra_nacci(k-2)+tetra_nacci(k-3)+tetra_nacci(k-4) q = int(input()) n_lst = [0]*q for i in range(q): n_lst[i] = int(input()) for i in range(q): print(tetra_nacci(n_lst[i])%17)