結果

問題 No.612 Move on grid
ユーザー maimai
提出日時 2017-12-12 02:29:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 192 ms / 2,500 ms
コード長 616 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 140,860 KB
最終ジャッジ日時 2024-12-18 00:47:36
合計ジャッジ時間 3,295 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,720 KB
testcase_01 AC 41 ms
53,608 KB
testcase_02 AC 41 ms
53,340 KB
testcase_03 AC 65 ms
79,436 KB
testcase_04 AC 135 ms
140,788 KB
testcase_05 AC 192 ms
140,324 KB
testcase_06 AC 161 ms
140,860 KB
testcase_07 AC 130 ms
140,564 KB
testcase_08 AC 158 ms
140,284 KB
testcase_09 AC 127 ms
139,676 KB
testcase_10 AC 112 ms
111,620 KB
testcase_11 AC 71 ms
83,448 KB
testcase_12 AC 143 ms
120,740 KB
testcase_13 AC 83 ms
94,044 KB
testcase_14 AC 166 ms
130,504 KB
testcase_15 AC 68 ms
85,052 KB
testcase_16 AC 181 ms
139,600 KB
testcase_17 AC 82 ms
95,496 KB
testcase_18 AC 142 ms
131,640 KB
testcase_19 AC 111 ms
115,624 KB
testcase_20 AC 136 ms
136,236 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