結果

問題 No.612 Move on grid
ユーザー maimai
提出日時 2017-12-12 02:24:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 616 bytes
コンパイル時間 76 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 24,096 KB
最終ジャッジ日時 2024-11-30 21:21:20
合計ジャッジ時間 40,836 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
16,128 KB
testcase_01 AC 28 ms
23,120 KB
testcase_02 AC 27 ms
16,204 KB
testcase_03 AC 235 ms
23,200 KB
testcase_04 AC 1,446 ms
16,208 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 1,282 ms
22,992 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 2,286 ms
17,232 KB
testcase_11 AC 562 ms
16,720 KB
testcase_12 TLE -
testcase_13 AC 1,196 ms
11,520 KB
testcase_14 TLE -
testcase_15 AC 637 ms
11,472 KB
testcase_16 TLE -
testcase_17 AC 749 ms
11,212 KB
testcase_18 TLE -
testcase_19 AC 1,527 ms
11,472 KB
testcase_20 AC 2,349 ms
23,452 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