結果
問題 | No.140 みんなで旅行 |
ユーザー | ciel |
提出日時 | 2015-05-28 00:01:38 |
言語 | Ruby (3.3.0) |
結果 |
AC
|
実行時間 | 344 ms / 5,000 ms |
コード長 | 299 bytes |
コンパイル時間 | 92 ms |
コンパイル使用メモリ | 7,296 KB |
実行使用メモリ | 19,456 KB |
最終ジャッジ日時 | 2024-06-07 19:22:41 |
合計ジャッジ時間 | 4,447 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 86 ms
12,032 KB |
testcase_01 | AC | 92 ms
12,160 KB |
testcase_02 | AC | 109 ms
12,288 KB |
testcase_03 | AC | 91 ms
12,288 KB |
testcase_04 | AC | 92 ms
12,160 KB |
testcase_05 | AC | 95 ms
12,288 KB |
testcase_06 | AC | 91 ms
12,032 KB |
testcase_07 | AC | 90 ms
12,160 KB |
testcase_08 | AC | 92 ms
12,032 KB |
testcase_09 | AC | 91 ms
12,288 KB |
testcase_10 | AC | 91 ms
12,032 KB |
testcase_11 | AC | 342 ms
19,328 KB |
testcase_12 | AC | 99 ms
12,160 KB |
testcase_13 | AC | 98 ms
12,416 KB |
testcase_14 | AC | 344 ms
19,456 KB |
testcase_15 | AC | 342 ms
19,456 KB |
testcase_16 | AC | 188 ms
14,976 KB |
testcase_17 | AC | 140 ms
13,440 KB |
testcase_18 | AC | 283 ms
17,792 KB |
testcase_19 | AC | 306 ms
18,176 KB |
testcase_20 | AC | 133 ms
13,056 KB |
testcase_21 | AC | 98 ms
12,160 KB |
コンパイルメッセージ
Syntax OK
ソースコード
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;r=(r+C[N][N-y]*F[N-y][x]*P[x][y])%M}} p r