結果

問題 No.498 ワープクリスタル (給料日編)
ユーザー titiatitia
提出日時 2023-06-29 00:13:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,562 ms / 2,000 ms
コード長 1,239 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 189,960 KB
最終ジャッジ日時 2024-07-05 17:32:38
合計ジャッジ時間 19,642 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
85,120 KB
testcase_01 AC 69 ms
85,248 KB
testcase_02 AC 72 ms
85,376 KB
testcase_03 AC 73 ms
85,120 KB
testcase_04 AC 1,356 ms
182,660 KB
testcase_05 AC 70 ms
85,248 KB
testcase_06 AC 1,562 ms
189,192 KB
testcase_07 AC 1,392 ms
184,956 KB
testcase_08 AC 1,560 ms
189,960 KB
testcase_09 AC 1,325 ms
182,148 KB
testcase_10 AC 69 ms
85,120 KB
testcase_11 AC 427 ms
99,264 KB
testcase_12 AC 69 ms
84,992 KB
testcase_13 AC 185 ms
91,928 KB
testcase_14 AC 69 ms
84,864 KB
testcase_15 AC 86 ms
86,272 KB
testcase_16 AC 69 ms
85,504 KB
testcase_17 AC 88 ms
86,144 KB
testcase_18 AC 1,426 ms
186,632 KB
testcase_19 AC 1,357 ms
184,076 KB
testcase_20 AC 1,370 ms
182,788 KB
testcase_21 AC 1,451 ms
188,940 KB
testcase_22 AC 1,324 ms
181,900 KB
testcase_23 AC 1,456 ms
187,652 KB
testcase_24 AC 1,528 ms
189,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Gx,Gy,K=map(int,input().split())
W=[list(map(int,input().split())) for i in range(K)]

while len(W)<=5:
    W.append((0,0,0))

DP=[[[[[0]*16 for i in range(16)] for j in range(16)] for k in range(16)] for l in range(16)]
DP[0][0][0][0][0]=1

ANS=0

for i in range(W[0][2]+1):
    for j in range(W[1][2]+1):
        for k in range(W[2][2]+1):
            for l in range(W[3][2]+1):
                for m in range(W[4][2]+1):

                    if i+1<=W[0][2]:
                        DP[i+1][j][k][l][m]+=DP[i][j][k][l][m]
                        
                    if j+1<=W[1][2]:
                        DP[i][j+1][k][l][m]+=DP[i][j][k][l][m]

                    if k+1<=W[2][2]:        
                        DP[i][j][k+1][l][m]+=DP[i][j][k][l][m]
                        
                    if l+1<=W[3][2]:
                        DP[i][j][k][l+1][m]+=DP[i][j][k][l][m]

                    if m+1<=W[4][2]:
                        DP[i][j][k][l][m+1]+=DP[i][j][k][l][m]

                    x=W[0][0]*i+W[1][0]*j+W[2][0]*k+W[3][0]*l+W[4][0]*m
                    y=W[0][1]*i+W[1][1]*j+W[2][1]*k+W[3][1]*l+W[4][1]*m

                    if x==Gx and y==Gy:
                        ANS+=DP[i][j][k][l][m]

print(ANS%(10**9+7))
0