結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
12,288 KB
testcase_01 AC 100 ms
12,288 KB
testcase_02 AC 97 ms
12,288 KB
testcase_03 AC 97 ms
12,416 KB
testcase_04 TLE -
testcase_05 AC 134 ms
12,416 KB
testcase_06 AC 97 ms
12,288 KB
testcase_07 AC 101 ms
12,416 KB
testcase_08 MLE -
testcase_09 AC 198 ms
12,288 KB
testcase_10 AC 177 ms
26,880 KB
testcase_11 AC 167 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 = []
1.upto(Q) { n.push(gets.to_i) }
5.upto(n.max) {|i| T.push(T[i - 2] + T[i - 3] + T[i - 4] + T[i - 5]) }
n.each {|ni| puts T[ni - 1] % 17 }
0