結果

問題 No.657 テトラナッチ数列 Easy
ユーザー tanukidontanukidon
提出日時 2018-03-22 19:56:17
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 176 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 13,952 KB
最終ジャッジ日時 2024-06-24 20:11:11
合計ジャッジ時間 2,370 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
12,160 KB
testcase_01 AC 85 ms
12,288 KB
testcase_02 AC 86 ms
12,416 KB
testcase_03 AC 86 ms
12,160 KB
testcase_04 RE -
testcase_05 AC 123 ms
13,952 KB
testcase_06 RE -
testcase_07 AC 83 ms
12,288 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.to_i
a = []
n.times do
a << gets.to_i
end
b=[nil,0,0,0,1,1,2,4,8,15]
if a.max < 10
(a.max-9).times do |i|
a <<  a[9+i]*2 - a[5+i]
end
end
a.each do |i|
p b[i] % 17
end
0