結果

問題 No.498 ワープクリスタル (給料日編)
ユーザー H3PO4H3PO4
提出日時 2024-07-14 09:23:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 742 bytes
コンパイル時間 452 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 449,112 KB
最終ジャッジ日時 2024-07-14 09:23:56
合計ジャッジ時間 15,862 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
55,392 KB
testcase_01 AC 43 ms
53,868 KB
testcase_02 AC 43 ms
54,636 KB
testcase_03 AC 42 ms
53,856 KB
testcase_04 AC 597 ms
246,048 KB
testcase_05 AC 41 ms
54,144 KB
testcase_06 AC 1,274 ms
448,636 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 1,219 ms
448,480 KB
testcase_10 AC 41 ms
54,792 KB
testcase_11 AC 115 ms
91,384 KB
testcase_12 AC 41 ms
54,644 KB
testcase_13 AC 80 ms
86,040 KB
testcase_14 AC 42 ms
54,456 KB
testcase_15 AC 50 ms
63,728 KB
testcase_16 AC 41 ms
54,844 KB
testcase_17 AC 50 ms
64,080 KB
testcase_18 AC 1,251 ms
448,372 KB
testcase_19 AC 1,314 ms
448,440 KB
testcase_20 AC 1,226 ms
448,608 KB
testcase_21 AC 1,195 ms
449,112 KB
testcase_22 AC 1,190 ms
448,640 KB
testcase_23 AC 1,208 ms
448,740 KB
testcase_24 AC 1,228 ms
448,640 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
print(ans)
0