結果

問題 No.612 Move on grid
ユーザー shotoyooshotoyoo
提出日時 2021-07-23 16:14:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 223 ms / 2,500 ms
コード長 794 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 141,696 KB
最終ジャッジ日時 2024-07-18 11:48:11
合計ジャッジ時間 3,827 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
58,240 KB
testcase_01 AC 45 ms
58,864 KB
testcase_02 AC 42 ms
59,520 KB
testcase_03 AC 70 ms
80,640 KB
testcase_04 AC 132 ms
140,228 KB
testcase_05 AC 223 ms
141,312 KB
testcase_06 AC 221 ms
141,056 KB
testcase_07 AC 124 ms
140,672 KB
testcase_08 AC 219 ms
141,696 KB
testcase_09 AC 166 ms
140,928 KB
testcase_10 AC 123 ms
110,464 KB
testcase_11 AC 77 ms
84,352 KB
testcase_12 AC 158 ms
120,960 KB
testcase_13 AC 92 ms
94,848 KB
testcase_14 AC 182 ms
130,432 KB
testcase_15 AC 73 ms
84,864 KB
testcase_16 AC 204 ms
139,904 KB
testcase_17 AC 84 ms
96,328 KB
testcase_18 AC 182 ms
132,096 KB
testcase_19 AC 120 ms
115,712 KB
testcase_20 AC 146 ms
136,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")
writef = lambda x: print("{:.12f}".format(x))


t = int(input())
a,b,c,d,e = list(map(int, input().split()))
m = 10000
dp = [0]*(2*m+1)
dp[m] = 1
M = 10**9+7
for i in range(t):
    ndp = [0]*(2*m+1)
    for j in range(2*m+1):
        val = dp[j]
        if val==0:
            continue
        ndp[j+a] = (ndp[j+a] + val) % M
        ndp[j-a] = (ndp[j-a] + val) % M
        ndp[j+b] = (ndp[j+b] + val) % M
        ndp[j-b] = (ndp[j-b] + val) % M
        ndp[j+c] = (ndp[j+c] + val) % M
        ndp[j-c] = (ndp[j-c] + val) % M
    dp = ndp
ans = 0
for i in range(d, e+1):
    ans += dp[i+m]
    ans %= M
print(ans%M)
0