結果

問題 No.93 ペガサス
ユーザー gigurururugigurururu
提出日時 2014-12-17 22:19:05
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,675 ms / 5,000 ms
コード長 303 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 24,832 KB
最終ジャッジ日時 2024-06-08 01:19:35
合計ジャッジ時間 10,254 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
12,288 KB
testcase_01 AC 74 ms
12,160 KB
testcase_02 AC 70 ms
12,288 KB
testcase_03 AC 70 ms
12,288 KB
testcase_04 AC 296 ms
18,176 KB
testcase_05 AC 154 ms
15,744 KB
testcase_06 AC 122 ms
15,104 KB
testcase_07 AC 903 ms
22,016 KB
testcase_08 AC 443 ms
19,072 KB
testcase_09 AC 1,634 ms
24,704 KB
testcase_10 AC 83 ms
13,312 KB
testcase_11 AC 98 ms
14,336 KB
testcase_12 AC 1,338 ms
22,912 KB
testcase_13 AC 390 ms
18,816 KB
testcase_14 AC 185 ms
16,384 KB
testcase_15 AC 1,191 ms
22,272 KB
testcase_16 AC 219 ms
16,896 KB
testcase_17 AC 71 ms
12,288 KB
testcase_18 AC 71 ms
12,288 KB
testcase_19 AC 1,675 ms
24,832 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n=gets.to_i
p n<3?n:(3..n).inject([[2,0,0,0]]){|s,i|
  j=0
  s.inject([[0]*4]*2){|(*t,u,v),(a,b,c,d)|
    j+=1
    t+[[u[0]+a*(j-1)+b+c*(j-2)+d,u[1],u[2]+b*(j-2)+d*(j-3),u[3]],[a*(i-1-j)+c*(i-j),c+v[1],b*(i-1-j)+d*(i-j),d+v[3]],[0,a*2+c,0,b*2+d]].map{|k|k.map{|l|l%1000000007}}
  }[1..-1]
}[0][0]
0