結果

問題 No.498 ワープクリスタル (給料日編)
ユーザー nebukuro09nebukuro09
提出日時 2017-03-24 23:19:21
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 238 ms / 2,000 ms
コード長 570 bytes
コンパイル時間 1,857 ms
コンパイル使用メモリ 76,844 KB
実行使用メモリ 78,756 KB
最終ジャッジ日時 2024-07-06 00:02:38
合計ジャッジ時間 6,014 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
75,532 KB
testcase_01 AC 73 ms
75,400 KB
testcase_02 AC 73 ms
75,276 KB
testcase_03 AC 73 ms
75,320 KB
testcase_04 AC 222 ms
77,572 KB
testcase_05 AC 73 ms
75,552 KB
testcase_06 AC 223 ms
77,708 KB
testcase_07 AC 238 ms
78,756 KB
testcase_08 AC 210 ms
78,200 KB
testcase_09 AC 217 ms
77,756 KB
testcase_10 AC 73 ms
75,296 KB
testcase_11 AC 100 ms
77,452 KB
testcase_12 AC 72 ms
75,800 KB
testcase_13 AC 89 ms
77,572 KB
testcase_14 AC 73 ms
75,396 KB
testcase_15 AC 83 ms
77,328 KB
testcase_16 AC 76 ms
76,332 KB
testcase_17 AC 85 ms
77,216 KB
testcase_18 AC 218 ms
77,596 KB
testcase_19 AC 196 ms
77,588 KB
testcase_20 AC 196 ms
77,320 KB
testcase_21 AC 200 ms
77,984 KB
testcase_22 AC 198 ms
77,628 KB
testcase_23 AC 221 ms
77,852 KB
testcase_24 AC 218 ms
77,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

Gx, Gy, K = map(int, raw_input().split())
C = [[] for _ in xrange(K)]
for i in xrange(K):
    x, y, n = map(int, raw_input().split())
    for j in xrange(n+1):
        C[i].append((x*j, y*j, j))

F = [1 for _ in xrange(76)]
for i in xrange(1, 76):
    F[i] = F[i-1] * i

ans = 0
for p in itertools.product(*C):
    x, y = 0, 0
    a = []
    for i in p:
        x += i[0]
        y += i[1]
        a.append(i[2])
    if Gx == x and Gy == y:
        b = 1
        for aa in a:
            b *= F[aa]
        ans += F[sum(a)] / b

print ans % 1000000007
0