結果

問題 No.533 Mysterious Stairs
ユーザー maimai
提出日時 2017-06-23 01:30:45
言語 Ruby
(3.3.0)
結果
AC  
実行時間 2,641 ms / 5,000 ms
コード長 556 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 74,368 KB
最終ジャッジ日時 2024-10-04 07:26:03
合計ジャッジ時間 12,505 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
12,928 KB
testcase_01 AC 104 ms
12,928 KB
testcase_02 AC 104 ms
13,056 KB
testcase_03 AC 103 ms
12,800 KB
testcase_04 AC 107 ms
12,800 KB
testcase_05 AC 105 ms
12,928 KB
testcase_06 AC 104 ms
12,928 KB
testcase_07 AC 107 ms
13,184 KB
testcase_08 AC 106 ms
13,056 KB
testcase_09 AC 104 ms
12,800 KB
testcase_10 AC 105 ms
12,800 KB
testcase_11 AC 104 ms
12,928 KB
testcase_12 AC 105 ms
12,800 KB
testcase_13 AC 106 ms
12,928 KB
testcase_14 AC 107 ms
12,800 KB
testcase_15 AC 105 ms
12,928 KB
testcase_16 AC 106 ms
13,184 KB
testcase_17 AC 108 ms
13,056 KB
testcase_18 AC 108 ms
13,184 KB
testcase_19 AC 110 ms
13,440 KB
testcase_20 AC 204 ms
19,712 KB
testcase_21 AC 227 ms
21,888 KB
testcase_22 AC 756 ms
34,304 KB
testcase_23 AC 2,590 ms
66,048 KB
testcase_24 AC 2,641 ms
74,368 KB
testcase_25 AC 204 ms
20,352 KB
testcase_26 AC 2,284 ms
54,016 KB
testcase_27 AC 445 ms
28,800 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require 'matrix'

# 
# オーバーキル解法.O(logN)
# 途中計算で剰余取らずに多倍長でごリ押すため,遅くなる.
# 

MOD = 1000000007

n = gets.to_i-1

my_nice_matrix = Matrix[ \
                 [0,1,1,0,0,0], \
                 [0,0,0,1,0,0], \
                 [0,0,0,0,1,0], \
                 [1,0,1,0,0,0], \
                 [0,0,0,0,0,1], \
                 [1,1,0,0,0,0]]



status = Matrix.column_vector([1,0,0,1,0,1])

status = (my_nice_matrix**n)*status

p (status[0,0]%MOD + status[1,0]%MOD + status[2,0]%MOD)%MOD
0