結果

問題 No.492 IOI数列
ユーザー koyumeishikoyumeishi
提出日時 2017-03-10 23:25:29
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 1,205 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-06-24 08:45:10
合計ジャッジ時間 3,310 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

mod1 = 10**9 + 7
mod2 = 101010101010101010101


n = gets.to_i

if n == 1 then
  puts 0
else
  m = n
  n = m-1
  res = [1,0,0,1]

  mat = [100,1,0,1]
  while n != 0 do 
    if( n%2 == 1 ) then
      res = [ mat[0] * res[0] + mat[1] * res[2], mat[0] * res[1] + mat[1] * res[3],
              mat[2] * res[0] + mat[3] * res[2], mat[2] * res[1] + mat[3] * res[3] ]
      res = res.map{|x| x % mod1 }
    end
    mat = [ mat[0] * mat[0] + mat[1] * mat[2], mat[0] * mat[1] + mat[1] * mat[3],
             mat[2] * mat[0] + mat[3] * mat[2], mat[2] * mat[1] + mat[3] * mat[3] ]
    mat = mat.map{|x| x%mod1 }
    n /= 2
  end
  puts (res[0] + res[1]) % mod1


  n = m-1
  res = [1,0,0,1]
  mat = [100,1,0,1]
  while n != 0 do 
    if( n%2 == 1 ) then
      res = [ mat[0] * res[0] + mat[1] * res[2], mat[0] * res[1] + mat[1] * res[3],
              mat[2] * res[0] + mat[3] * res[2], mat[2] * res[1] + mat[3] * res[3] ]
      res = res.map{|x| x % mod2 }
    end
    mat = [ mat[0] * mat[0] + mat[1] * mat[2], mat[0] * mat[1] + mat[1] * mat[3],
             mat[2] * mat[0] + mat[3] * mat[2], mat[2] * mat[1] + mat[3] * mat[3] ]
    mat = mat.map{|x| x%mod2 }
    n /= 2
  end
  puts (res[0] + res[1]) % mod2
end
0