結果

問題 No.498 ワープクリスタル (給料日編)
ユーザー cielciel
提出日時 2017-04-24 00:30:19
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 375 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,672 KB
最終ジャッジ日時 2024-07-22 10:17:51
合計ジャッジ時間 8,588 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,288 KB
testcase_01 AC 97 ms
12,160 KB
testcase_02 AC 93 ms
12,032 KB
testcase_03 AC 92 ms
12,160 KB
testcase_04 AC 484 ms
12,672 KB
testcase_05 AC 92 ms
12,288 KB
testcase_06 AC 487 ms
12,672 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 488 ms
12,544 KB
testcase_10 AC 90 ms
12,288 KB
testcase_11 AC 151 ms
12,544 KB
testcase_12 AC 86 ms
12,288 KB
testcase_13 AC 104 ms
12,544 KB
testcase_14 AC 85 ms
12,288 KB
testcase_15 AC 89 ms
12,160 KB
testcase_16 AC 89 ms
12,288 KB
testcase_17 AC 91 ms
12,160 KB
testcase_18 AC 483 ms
12,672 KB
testcase_19 AC 482 ms
12,544 KB
testcase_20 AC 484 ms
12,544 KB
testcase_21 AC 484 ms
12,672 KB
testcase_22 AC 482 ms
12,672 KB
testcase_23 AC 482 ms
12,544 KB
testcase_24 AC 481 ms
12,544 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

M=10**9+7;I=[1,1];*F=I;*R=I
2.upto(99){|i|I<<z=(M-M/i)*I[M%i]%M;F<<i*F[-1]%M;R<<z*R[-1]%M}
def dfs(x,y,a)
	r=x!=W||y!=H||a[-1].to_i==0 ? 0 : F[a.reduce(0,:+)]*a.map{|e|R[e]}.reduce(1,:*)%M
	if a.size<A.size
		dx,dy,n=A[a.size]
		(0..n).each{|i|
			r=(r+dfs(x+dx*i,y+dy*i,a+[i]))%M
		}
	end
	r
end
W,H,K=gets.split.map &:to_i
A=K.times.map{gets.split.map &:to_i}
p dfs(0,0,[])
0