結果
問題 | No.658 テトラナッチ数列 Hard |
ユーザー | ciel |
提出日時 | 2017-12-29 19:17:13 |
言語 | Crystal (1.11.2) |
結果 |
WA
|
実行時間 | - |
コード長 | 415 bytes |
コンパイル時間 | 11,928 ms |
コンパイル使用メモリ | 295,860 KB |
実行使用メモリ | 13,752 KB |
最終ジャッジ日時 | 2024-06-30 19:16:57 |
合計ジャッジ時間 | 15,231 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | RE | - |
testcase_03 | WA | - |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
ソースコード
#!/usr/bin/env crystal M=17 def mul(a,b) r=a.size.times.map{[0]*b[0].size}.to_a 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.not_nil!.to_i.times{ n=gets.not_nil!.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] }