結果

問題 No.657 テトラナッチ数列 Easy
ユーザー mlihua09mlihua09
提出日時 2020-09-03 13:41:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 180 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 82,632 KB
実行使用メモリ 91,904 KB
最終ジャッジ日時 2024-11-23 16:05:17
合計ジャッジ時間 2,888 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
73,344 KB
testcase_01 AC 75 ms
73,472 KB
testcase_02 AC 68 ms
73,728 KB
testcase_03 AC 66 ms
73,600 KB
testcase_04 AC 71 ms
73,856 KB
testcase_05 AC 131 ms
91,648 KB
testcase_06 AC 71 ms
73,856 KB
testcase_07 AC 67 ms
73,600 KB
testcase_08 AC 68 ms
73,728 KB
testcase_09 AC 136 ms
91,720 KB
testcase_10 AC 133 ms
91,392 KB
testcase_11 AC 131 ms
91,904 KB
testcase_12 AC 131 ms
91,264 KB
testcase_13 AC 135 ms
91,616 KB
testcase_14 AC 135 ms
91,904 KB
testcase_15 AC 133 ms
91,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


T = [1] + [0] * 10 ** 6

for i in range(4, 10 ** 6 + 1):
    T[i] = (T[i - 1] + T[i - 2] + T[i - 3] + T[i - 4]) % 17
    
for _ in range(int(input())):
    print(T[int(input())])
0