結果

問題 No.658 テトラナッチ数列 Hard
ユーザー cielciel
提出日時 2017-12-27 20:22:19
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 405 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 19,744 KB
最終ジャッジ日時 2024-06-01 05:04:06
合計ジャッジ時間 4,317 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
18,972 KB
testcase_01 AC 93 ms
12,288 KB
testcase_02 AC 104 ms
12,416 KB
testcase_03 AC 175 ms
12,544 KB
testcase_04 TLE -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

M=17
def mul(a,b)
	r=a.size.times.map{[0]*b[0].size}
	a.size.times{|y|
		b[0].size.times{|x|
			r[y][x]=b.size.times.reduce(0){|s,i|(s+a[y][i]*b[i][x])%M}
		}
	}
	r
end
A=[[1,1,1,1],[1,0,0,0],[0,1,0,0],[0,0,1,0]]
E=[[1,0,0,0],[0,1,0,0],[0,0,1,0],[0,0,0,1]]
gets.to_i.times{
    n=gets.to_i
    a=A
    e=E
    while n>0
        e=mul(a,e) if n%2>0
        a=mul(a,a)
        n/=2
    end
    p e[-1][-1]
}
0