結果

問題 No.498 ワープクリスタル (給料日編)
ユーザー H3PO4H3PO4
提出日時 2024-07-14 09:24:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,319 ms / 2,000 ms
コード長 757 bytes
コンパイル時間 380 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 448,792 KB
最終ジャッジ日時 2024-07-14 09:24:35
合計ジャッジ時間 16,304 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,732 KB
testcase_01 AC 44 ms
54,548 KB
testcase_02 AC 41 ms
54,324 KB
testcase_03 AC 43 ms
54,556 KB
testcase_04 AC 640 ms
245,876 KB
testcase_05 AC 43 ms
55,480 KB
testcase_06 AC 1,319 ms
448,488 KB
testcase_07 AC 612 ms
245,900 KB
testcase_08 AC 970 ms
318,576 KB
testcase_09 AC 1,279 ms
448,648 KB
testcase_10 AC 41 ms
54,792 KB
testcase_11 AC 122 ms
91,332 KB
testcase_12 AC 42 ms
55,036 KB
testcase_13 AC 85 ms
86,104 KB
testcase_14 AC 43 ms
55,888 KB
testcase_15 AC 51 ms
63,320 KB
testcase_16 AC 43 ms
54,656 KB
testcase_17 AC 52 ms
63,112 KB
testcase_18 AC 1,274 ms
448,792 KB
testcase_19 AC 1,284 ms
448,396 KB
testcase_20 AC 1,301 ms
448,396 KB
testcase_21 AC 1,231 ms
448,380 KB
testcase_22 AC 1,256 ms
448,464 KB
testcase_23 AC 1,236 ms
448,456 KB
testcase_24 AC 1,236 ms
448,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

MOD = 10**9 + 7
MAX = 76
fac = [1] * MAX
for i in range(1, MAX):
    fac[i] = fac[i - 1] * i % MOD

Gx, Gy, K = map(int, input().split())
cand = defaultdict(list)
cand[(0, 0)] = [[]]
for _ in range(K):
    nx, ny, n = map(int, input().split())
    new_cand = defaultdict(list)
    for (x, y), lst in cand.items():
        for crystal in lst:
            new_cand[(x, y)].append(crystal + [0])
            for i in range(1, n + 1):
                new_cand[(x + i * nx, y + i * ny)].append(crystal + [i])
    cand = new_cand

res = cand[(Gx, Gy)]
ans = 0
for crystal in res:
    tmp = fac[sum(crystal)]
    for x in crystal:
        tmp *= pow(fac[x], -1, MOD)
        tmp %= MOD
    ans += tmp
    ans %= MOD
print(ans)
0