結果

問題 No.612 Move on grid
ユーザー vwxyzvwxyz
提出日時 2022-04-10 16:21:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 648 ms / 2,500 ms
コード長 430 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 98,440 KB
最終ジャッジ日時 2024-10-03 21:31:01
合計ジャッジ時間 7,359 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,948 KB
testcase_01 AC 35 ms
52,000 KB
testcase_02 AC 33 ms
52,832 KB
testcase_03 AC 67 ms
75,728 KB
testcase_04 AC 557 ms
98,200 KB
testcase_05 AC 553 ms
97,984 KB
testcase_06 AC 648 ms
98,176 KB
testcase_07 AC 564 ms
98,160 KB
testcase_08 AC 553 ms
98,440 KB
testcase_09 AC 278 ms
80,392 KB
testcase_10 AC 217 ms
79,852 KB
testcase_11 AC 90 ms
75,804 KB
testcase_12 AC 327 ms
85,144 KB
testcase_13 AC 140 ms
77,372 KB
testcase_14 AC 428 ms
90,536 KB
testcase_15 AC 101 ms
75,884 KB
testcase_16 AC 492 ms
93,360 KB
testcase_17 AC 144 ms
77,876 KB
testcase_18 AC 405 ms
88,584 KB
testcase_19 AC 256 ms
81,240 KB
testcase_20 AC 342 ms
84,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline

T=int(readline())
mod=10**9+7
a,b,c,d,e=map(int,readline().split())
m=max(abs(x) for x in (a,b,c))
M=m*T
dp=[0]*(2*M+1)
dp[M]=1
for t in range(T):
    prev=dp
    dp=[0]*(2*M+1)
    for i in range(2*M+1):
        for di in (a,-a,b,-b,c,-c):
            if 0<=i+di<2*M+1:
                dp[i+di]+=prev[i]
                dp[i+di]%=mod
ans=sum(dp[max(d+M,0):min(e+M+1,2*M+1)])%mod
print(ans)
0