結果

問題 No.657 テトラナッチ数列 Easy
ユーザー 0918nobita0918nobita
提出日時 2018-03-19 09:16:53
言語 Ruby
(3.4.1)
結果
MLE  
実行時間 -
コード長 190 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 817,792 KB
最終ジャッジ日時 2024-12-31 10:37:03
合計ジャッジ時間 15,075 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
12,288 KB
testcase_01 AC 94 ms
12,288 KB
testcase_02 AC 93 ms
12,160 KB
testcase_03 AC 94 ms
12,160 KB
testcase_04 MLE -
testcase_05 AC 198 ms
12,544 KB
testcase_06 AC 96 ms
12,160 KB
testcase_07 AC 92 ms
12,288 KB
testcase_08 MLE -
testcase_09 AC 144 ms
12,544 KB
testcase_10 AC 180 ms
27,136 KB
testcase_11 AC 177 ms
27,136 KB
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 MLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

Q = gets.to_i
T = [0, 0, 0, 1]
n = []

for i in 1..Q
    n.push(gets.to_i)
end
for i in 5..n.max
    T.push(T[i - 2] + T[i - 3] + T[i - 4] + T[i - 5])
end

n.each {|ni| puts T[ni - 1] % 17 }
0