結果

問題 No.498 ワープクリスタル (給料日編)
ユーザー 0w10w1
提出日時 2017-04-10 18:56:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 773 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 76,340 KB
最終ジャッジ日時 2024-07-18 05:43:04
合計ジャッジ時間 2,794 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 41 ms
51,968 KB
testcase_04 AC 96 ms
75,652 KB
testcase_05 AC 39 ms
51,840 KB
testcase_06 AC 114 ms
76,096 KB
testcase_07 AC 109 ms
76,288 KB
testcase_08 AC 94 ms
76,032 KB
testcase_09 AC 91 ms
75,904 KB
testcase_10 AC 36 ms
52,352 KB
testcase_11 AC 59 ms
75,648 KB
testcase_12 AC 37 ms
52,224 KB
testcase_13 AC 60 ms
71,052 KB
testcase_14 AC 36 ms
51,968 KB
testcase_15 AC 47 ms
62,208 KB
testcase_16 AC 37 ms
52,480 KB
testcase_17 AC 43 ms
59,904 KB
testcase_18 AC 102 ms
76,340 KB
testcase_19 AC 82 ms
75,820 KB
testcase_20 AC 83 ms
76,108 KB
testcase_21 AC 93 ms
76,292 KB
testcase_22 AC 93 ms
75,520 KB
testcase_23 AC 100 ms
75,904 KB
testcase_24 AC 97 ms
75,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = int( 1e9 ) + 7

fact = [ 1 ]
inv_fact = [ 1 ]
for i in range( 1, 100, 1 ):
  fact.append( fact[ i - 1 ] * i % MOD )
  inv_fact.append( pow( fact[ i ], MOD - 2, MOD ) )

Gx, Gy, K = map( int, input().split() )
X = []
Y = []
N = []
for i in range( K ):
  x, y, n = map( int, input().split() )
  X.append( x )
  Y.append( y )
  N.append( n )

ans = 0
def dfs( t, x, y, vis = None ):
  if vis == None:
    vis = []
  if t == K:
    if x == Gx and y == Gy:
      f = fact[ sum( vis ) ]
      for i in range( len( vis ) ):
        f = f * inv_fact[ vis[ i ] ] % MOD
      global ans
      ans = ( ans + f ) % MOD
    return
  for i in range( N[ t ] + 1 ):
    vis.append( i )
    dfs( t + 1, x + X[ t ] * i, y + Y[ t ] * i, vis )
    vis.pop()

dfs( 0, 0, 0 )
print( ans )
0