結果
問題 | No.336 門松列列 |
ユーザー | fine |
提出日時 | 2016-01-17 02:06:18 |
言語 | Ruby (3.3.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 422 bytes |
コンパイル時間 | 58 ms |
コンパイル使用メモリ | 7,296 KB |
実行使用メモリ | 817,792 KB |
最終ジャッジ日時 | 2024-09-19 20:18:17 |
合計ジャッジ時間 | 5,498 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
コンパイルメッセージ
Syntax OK
ソースコード
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] } else t[i][i] = 0 (i-1).downto(0){|j| t[i][j] = t[i][j+1] + t[i-1][j] } end } p t[n-1].inject(&:+) * 2 % 1000000007