結果

問題 No.891 隣接3項間の漸化式
ユーザー erbowlerbowl
提出日時 2020-03-21 13:19:46
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 429 bytes
コンパイル時間 52 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 15,744 KB
最終ジャッジ日時 2024-06-01 10:09:40
合計ジャッジ時間 6,251 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
13,056 KB
testcase_01 AC 108 ms
12,928 KB
testcase_02 AC 110 ms
13,056 KB
testcase_03 AC 106 ms
12,928 KB
testcase_04 AC 105 ms
12,928 KB
testcase_05 AC 103 ms
12,928 KB
testcase_06 AC 105 ms
12,928 KB
testcase_07 AC 102 ms
13,056 KB
testcase_08 AC 104 ms
13,056 KB
testcase_09 AC 104 ms
12,928 KB
testcase_10 AC 106 ms
12,928 KB
testcase_11 AC 105 ms
13,056 KB
testcase_12 AC 104 ms
12,928 KB
testcase_13 RE -
testcase_14 AC 109 ms
12,928 KB
testcase_15 AC 103 ms
12,928 KB
testcase_16 AC 103 ms
13,056 KB
testcase_17 RE -
testcase_18 AC 104 ms
12,928 KB
testcase_19 AC 104 ms
12,800 KB
testcase_20 RE -
testcase_21 AC 101 ms
13,056 KB
testcase_22 AC 103 ms
12,928 KB
testcase_23 RE -
testcase_24 AC 104 ms
12,800 KB
testcase_25 AC 111 ms
12,928 KB
testcase_26 AC 106 ms
13,056 KB
testcase_27 AC 107 ms
13,056 KB
testcase_28 AC 105 ms
13,056 KB
testcase_29 AC 101 ms
12,800 KB
testcase_30 AC 105 ms
12,928 KB
testcase_31 AC 103 ms
12,928 KB
testcase_32 AC 102 ms
12,928 KB
testcase_33 AC 105 ms
12,928 KB
testcase_34 AC 105 ms
12,928 KB
testcase_35 AC 104 ms
13,056 KB
testcase_36 AC 105 ms
12,928 KB
testcase_37 AC 103 ms
12,928 KB
testcase_38 AC 104 ms
12,928 KB
testcase_39 AC 107 ms
13,056 KB
testcase_40 AC 106 ms
12,800 KB
testcase_41 AC 109 ms
12,928 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require 'matrix'

a,b,n=gets.split.map(&:to_i)
$mod = 1000000007
$memo={}
def rui(m,x)
    m.map!{|e|e%$mod}

    return $memo[x] if($memo.key?(x))
    # p m
    if x==1
        m
    else
        return $memo[x] = if x.even?
            rui(m,x/2)*rui(m,x/2).map!{|e|e%$mod}
        else
            rui(m,x-1)*m.map!{|e|e%$mod}
        end
    end
end

ma = Matrix[[a, b], [1, 0]]

p (rui(ma,n)*Matrix[[1],[0]])[1,0]%$mod.ceil
0