結果

問題 No.140 みんなで旅行
ユーザー cielciel
提出日時 2015-05-28 00:00:04
言語 Ruby
(3.3.0)
結果
AC  
実行時間 311 ms / 5,000 ms
コード長 338 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 11,268 KB
実行使用メモリ 22,616 KB
最終ジャッジ日時 2023-09-20 17:00:44
合計ジャッジ時間 4,084 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
15,140 KB
testcase_01 AC 83 ms
15,092 KB
testcase_02 AC 90 ms
15,852 KB
testcase_03 AC 81 ms
15,256 KB
testcase_04 AC 78 ms
15,104 KB
testcase_05 AC 78 ms
15,152 KB
testcase_06 AC 82 ms
15,200 KB
testcase_07 AC 78 ms
15,052 KB
testcase_08 AC 78 ms
15,180 KB
testcase_09 AC 78 ms
15,272 KB
testcase_10 AC 80 ms
15,048 KB
testcase_11 AC 311 ms
22,616 KB
testcase_12 AC 87 ms
15,580 KB
testcase_13 AC 81 ms
15,356 KB
testcase_14 AC 309 ms
22,524 KB
testcase_15 AC 308 ms
22,604 KB
testcase_16 AC 170 ms
17,996 KB
testcase_17 AC 123 ms
17,132 KB
testcase_18 AC 257 ms
20,940 KB
testcase_19 AC 274 ms
21,688 KB
testcase_20 AC 113 ms
16,976 KB
testcase_21 AC 81 ms
15,108 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

#!/usr/bin/ruby
N=gets.to_i
M=10**9+7
C,F,P=3.times.map{(N+2).times.map{[0]*(N+2)}}
(0..N).each{|x|
	C[x][0]=F[x][1]=1
	(1..x).each{|y|C[x][y]=(C[x-1][y]+C[x-1][y-1])%M;F[x][y]=(F[x-1][y-1]+y*F[x-1][y])%M}
}
r=0
(0..N).each{|x|
	P[x][0]=1
	(0..N).each{|y|P[x][y+1]=P[x][y]*x*~-x%M}
	(0..N).each{|y|r=(r+C[N][y]*F[y][x]*P[x][N-y])%M}
}
p r
0