結果

問題 No.336 門松列列
ユーザー finefine
提出日時 2016-01-17 02:08:49
言語 Ruby
(3.3.0)
結果
AC  
実行時間 387 ms / 2,000 ms
コード長 452 bytes
コンパイル時間 75 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 27,776 KB
最終ジャッジ日時 2024-06-12 01:12:02
合計ジャッジ時間 3,664 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 323 ms
24,192 KB
testcase_01 AC 80 ms
12,288 KB
testcase_02 AC 77 ms
12,160 KB
testcase_03 AC 76 ms
12,160 KB
testcase_04 AC 385 ms
27,776 KB
testcase_05 AC 77 ms
12,288 KB
testcase_06 AC 114 ms
13,568 KB
testcase_07 AC 180 ms
17,408 KB
testcase_08 AC 270 ms
21,888 KB
testcase_09 AC 365 ms
26,880 KB
testcase_10 AC 380 ms
27,776 KB
testcase_11 AC 387 ms
27,776 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.to_i
if n < 3
    puts 0
    exit
end
t = Array.new(n)
n.times{|i|
    t[i] = Array.new(i+1)
    }
t[0][0] = 1
1.upto(n-1){|i|
    if i % 2 == 1
        t[i][0] = 0
        1.upto(i){|j|
            t[i][j] = (t[i][j-1] + t[i-1][j-1]) % 1000000007
            }
    else
        t[i][i] = 0
        (i-1).downto(0){|j|
            t[i][j] = (t[i][j+1] + t[i-1][j]) % 1000000007
            }
    end
    }
p t[n-1].inject(&:+) * 2 % 1000000007
0