結果

問題 No.612 Move on grid
ユーザー maimai
提出日時 2017-12-12 02:29:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 200 ms / 2,500 ms
コード長 616 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 140,032 KB
最終ジャッジ日時 2024-05-10 03:46:23
合計ジャッジ時間 3,483 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,352 KB
testcase_01 AC 38 ms
52,736 KB
testcase_02 AC 40 ms
52,992 KB
testcase_03 AC 65 ms
79,232 KB
testcase_04 AC 140 ms
139,904 KB
testcase_05 AC 200 ms
140,032 KB
testcase_06 AC 167 ms
139,520 KB
testcase_07 AC 137 ms
139,520 KB
testcase_08 AC 166 ms
139,648 KB
testcase_09 AC 137 ms
139,136 KB
testcase_10 AC 118 ms
109,824 KB
testcase_11 AC 74 ms
83,328 KB
testcase_12 AC 148 ms
120,192 KB
testcase_13 AC 87 ms
94,108 KB
testcase_14 AC 171 ms
130,048 KB
testcase_15 AC 72 ms
84,736 KB
testcase_16 AC 187 ms
139,684 KB
testcase_17 AC 87 ms
94,848 KB
testcase_18 AC 146 ms
131,328 KB
testcase_19 AC 115 ms
115,072 KB
testcase_20 AC 141 ms
136,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
a,b,c,d,e = map(int, input().split())

# print(t,a,b,c,d,e)

d += 10010
e += 10010

MD = 1000000007

dp = [0]*20020
dp[10010] = 1

left = 10010
right = 10011
abc = max(abs(a),abs(b),abs(c))

for lop in range(t):
    dp2 = [0]*20020
    for x in range(left, right):
        y = dp[x] = dp[x]%MD
        if y > 0:
            dp2[x + a] += y
            dp2[x - a] += y
            dp2[x + b] += y
            dp2[x - b] += y
            dp2[x + c] += y
            dp2[x - c] += y
    dp = dp2
    left -= abc
    right += abc

ans = 0
for x in range(d, e+1):
    ans = (ans+dp[x])%MD

print(ans%MD)
0